From ddb4a69a983c51030b41aa0d9f6b36513e2f665d Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Wed, 7 Jan 2009 17:24:20 +0000 Subject: [PATCH] - Fixed bug #47029 (quoted_printable_decode() produces duplicate warning) Patch by Andy wharmby --- ext/standard/quot_print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/quot_print.c b/ext/standard/quot_print.c index 8fce81088d..5c7932e06b 100644 --- a/ext/standard/quot_print.c +++ b/ext/standard/quot_print.c @@ -156,7 +156,7 @@ PHP_FUNCTION(quoted_printable_decode) 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); -- 2.50.1