diff options
author | Antony Dovgal <tony2001@php.net> | 2005-01-20 18:08:08 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-01-20 18:08:08 +0000 |
commit | 84a8849a3a10fde959207f61c4632c5490eba6dc (patch) | |
tree | 35d58eec42c1b933ccfde91013c277627dbff070 | |
parent | 4f3e113e38943945f6f585f1ba565c7db74ebec1 (diff) | |
download | php-git-84a8849a3a10fde959207f61c4632c5490eba6dc.tar.gz |
fix error message
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index b90ac50f24..b190dcdd32 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2468,7 +2468,7 @@ PHP_FUNCTION(imap_sort) if (myargc >= 4) { convert_to_long_ex(flags); if (Z_LVAL_PP(flags) < 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Search options parameter has to be greater than or equal to 0cannot be less than 0"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Search options parameter has to be greater than or equal to 0"); RETURN_FALSE; } } |