diff options
author | John Coggeshall <john@php.net> | 2002-11-13 13:31:33 +0000 |
---|---|---|
committer | John Coggeshall <john@php.net> | 2002-11-13 13:31:33 +0000 |
commit | 253cecd43aad193622daa237acf2bb173d99d68c (patch) | |
tree | 144b03231a6433cb2093fb3852dfb9f1e9632324 /ext/standard/array.c | |
parent | ae51b7f4db379c07f5ef82cb6409f9fe233a70bb (diff) | |
download | php-git-253cecd43aad193622daa237acf2bb173d99d68c.tar.gz |
Added GLOB_ONLYDIR and GLOB_BRACE for compatiable systems for the glob()
function.
Modified the layout and some minor logic in the experimental webHarness()
test class
Added Whitespace accidently to array.c :)
Diffstat (limited to 'ext/standard/array.c')
-rw-r--r-- | ext/standard/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 4db2871f79..e0906fc9e9 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -3250,7 +3250,7 @@ PHP_FUNCTION(array_filter) } if (Z_TYPE_PP(input) != IS_ARRAY) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "The first argument shouldbe an array"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "The first argument should be an array"); return; } |