From: Antony Dovgal Date: Wed, 14 Dec 2005 00:55:44 +0000 (+0000) Subject: MFH: fix spelling and #35665 X-Git-Tag: php-4.4.2RC2~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d14284e54146dead8f518698d96adb095398fd7;p=php MFH: fix spelling and #35665 --- diff --git a/ext/standard/string.c b/ext/standard/string.c index c52e5a1621..8b0d0d620a 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -3541,7 +3541,7 @@ PHP_FUNCTION(str_repeat) /* Initialize the result string */ result_len = Z_STRLEN_PP(input_str) * Z_LVAL_PP(mult); if (result_len < 1) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer then 2147483647 bytes"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "You may not create strings longer than 2147483647 bytes"); RETURN_FALSE; } result = (char *)emalloc(result_len + 1);