pajoye Tue Mar 24 09:42:49 2009 UTC Modified files: /php-src/ext/gd gd.c Log: - MFB: #47757 rename JPG to JPEG in phpinfo http://cvs.php.net/viewvc.cgi/php-src/ext/gd/gd.c?r1=1.408&r2=1.409&diff_format=u Index: php-src/ext/gd/gd.c diff -u php-src/ext/gd/gd.c:1.408 php-src/ext/gd/gd.c:1.409 --- php-src/ext/gd/gd.c:1.408 Tue Mar 10 23:39:17 2009 +++ php-src/ext/gd/gd.c Tue Mar 24 09:42:49 2009 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: gd.c,v 1.408 2009/03/10 23:39:17 helly Exp $ */ +/* $Id: gd.c,v 1.409 2009/03/24 09:42:49 pajoye Exp $ */ /* gd 1.2 is copyright 1994, 1995, Quest Protein Database Center, Cold Spring Harbor Labs. */ @@ -1294,9 +1294,9 @@ add_ascii_assoc_bool(return_value, "GIF Create Support", 0); #endif #ifdef HAVE_GD_JPG - add_ascii_assoc_bool(return_value, "JPG Support", 1); + add_ascii_assoc_bool(return_value, "JPEG Support", 1); #else - add_ascii_assoc_bool(return_value, "JPG Support", 0); + add_ascii_assoc_bool(return_value, "JPEG Support", 0); #endif #ifdef HAVE_GD_PNG add_ascii_assoc_bool(return_value, "PNG Support", 1);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php