From 6509c6edc710b0c932761ca25561522b8e56f280 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Thu, 20 Jan 2005 18:46:14 +0000 Subject: [PATCH] fix error message =/ --- ext/imap/php_imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 6259f632ee..bd633469a7 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2435,7 +2435,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; } } -- 2.50.1