]> granicus.if.org Git - php/commitdiff
MFH: fix spelling and #35665
authorAntony Dovgal <tony2001@php.net>
Wed, 14 Dec 2005 00:55:44 +0000 (00:55 +0000)
committerAntony Dovgal <tony2001@php.net>
Wed, 14 Dec 2005 00:55:44 +0000 (00:55 +0000)
ext/standard/string.c

index c52e5a1621ea9847a833e10019c8da58c5247092..8b0d0d620aa016d0aeeb446a3fbd6228632a345f 100644 (file)
@@ -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);