felipe Wed Jan 7 17:24:20 2009 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/standard quot_print.c Log: - Fixed bug #47029 (quoted_printable_decode() produces duplicate warning) Patch by Andy wharmby http://cvs.php.net/viewvc.cgi/php-src/ext/standard/quot_print.c?r1=1.29.2.2.2.3&r2=1.29.2.2.2.4&diff_format=u Index: php-src/ext/standard/quot_print.c diff -u php-src/ext/standard/quot_print.c:1.29.2.2.2.3 php-src/ext/standard/quot_print.c:1.29.2.2.2.4 --- php-src/ext/standard/quot_print.c:1.29.2.2.2.3 Wed Dec 31 11:17:45 2008 +++ php-src/ext/standard/quot_print.c Wed Jan 7 17:24:20 2009 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: quot_print.c,v 1.29.2.2.2.3 2008/12/31 11:17:45 sebastian Exp $ */ +/* $Id: quot_print.c,v 1.29.2.2.2.4 2009/01/07 17:24:20 felipe Exp $ */ #include <stdlib.h> @@ -156,7 +156,7 @@ int i = 0, j = 0, k; if (ZEND_NUM_ARGS() != 1 || zend_get_parameters_ex(1, &arg1) == FAILURE) { - WRONG_PARAM_COUNT; + return; } convert_to_string_ex(arg1);
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php