From: foobar Date: Fri, 8 Mar 2002 07:35:07 +0000 (+0000) Subject: - MFH (fix for the phpinfo() output) X-Git-Tag: php-4.2.0RC1~65 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a8677aafbcbfc8fdd441e38a1564ebe3e7a4bf77;p=php - MFH (fix for the phpinfo() output) --- diff --git a/main/main.c b/main/main.c index aeadee4713..4dfb199b72 100644 --- a/main/main.c +++ b/main/main.c @@ -382,7 +382,7 @@ PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC) smart_str_appendl(&s, "&", sizeof("&")-1); break; case ' ': - smart_str_appendl(&s, " ", sizeof(" ")-1); + smart_str_appendl(&s, "  ", sizeof("  ")-1); break; case '\t': smart_str_appendl(&s, "    ", sizeof("    ")-1);