From 890ae1e244a2aadb2be10910be292b7d9653a0df Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Fri, 18 Aug 2000 13:43:22 +0000 Subject: [PATCH] #Its fixed this time, no really. --- ext/standard/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index f89f4989ef..9df17e46e0 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -484,7 +484,7 @@ PHP_FUNCTION(implode) WRONG_PARAM_COUNT; } - if ((*arg1)->type == IS_ARRAY && (*arg2)->type == IS_STRING) { + if ((*arg1)->type == IS_ARRAY) { SEPARATE_ZVAL(arg1); arr = *arg1; convert_to_string_ex(arg2); -- 2.50.1