diff options
author | Derick Rethans <derick@php.net> | 2002-03-02 14:06:57 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2002-03-02 14:06:57 +0000 |
commit | 6f9c7bcf2140c866145d006d3d435e991eee7f15 (patch) | |
tree | f95c0b7c408a60468b3da39646f86f39fe77d0d0 | |
parent | 1f9464e3451a09e79043e1243fbbf498df83e724 (diff) | |
download | php-git-6f9c7bcf2140c866145d006d3d435e991eee7f15.tar.gz |
- Fix warning message for join().
-rw-r--r-- | ext/standard/string.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 47860faf0f..dad7f5c03b 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -865,7 +865,8 @@ PHP_FUNCTION(implode) convert_to_string_ex(arg1); delim = *arg1; } else { - php_error(E_WARNING, "Bad arguments to implode()"); + php_error(E_WARNING, "Bad arguments to %s()", + get_active_function_name(TSRMLS_C)); return; } |