From: Antony Dovgal Date: Thu, 20 Jan 2005 18:44:25 +0000 (+0000) Subject: fix error message =/ X-Git-Tag: php-5.0.4RC1~286 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b689d32d189f0c22c74df4a9e07fda63c19521fe;p=php fix error message =/ --- diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index c40944acb5..8bd6a9eee1 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; } }