From: Derick Rethans Date: Thu, 4 Oct 2001 15:25:39 +0000 (+0000) Subject: - 'Fix' for bug #13543 X-Git-Tag: PRE_PARAMETER_PARSING_API~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=744d1fc1ea2b78883a9d3ab2b323890b1eba0ea2;p=php - 'Fix' for bug #13543 --- diff --git a/ext/standard/string.c b/ext/standard/string.c index fe0ae0a039..4c90637664 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2950,7 +2950,7 @@ static void php_hebrev(INTERNAL_FUNCTION_PARAMETERS, int convert_newlines) efree(heb_str); if (convert_newlines) { - php_char_to_str(broken_str, Z_STRLEN_PP(str),'\n', "
\n", 5, return_value); + php_char_to_str(broken_str, Z_STRLEN_PP(str),'\n', "
\n", 7, return_value); efree(broken_str); } else { Z_STRVAL_P(return_value) = broken_str;