diff options
| -rw-r--r-- | ext/gd/gd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 22fc6a54a8..4e477ba90a 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -1360,9 +1360,9 @@ PHP_FUNCTION(gd_info) add_assoc_bool(return_value, "GIF Create Support", 0); #endif #ifdef HAVE_GD_JPG - add_assoc_bool(return_value, "JPG Support", 1); + add_assoc_bool(return_value, "JPEG Support", 1); #else - add_assoc_bool(return_value, "JPG Support", 0); + add_assoc_bool(return_value, "JPEG Support", 0); #endif #ifdef HAVE_GD_PNG add_assoc_bool(return_value, "PNG Support", 1); |
