- Commented out the space escaping. Works now as it did before.

This commit is contained in:
foobar 2002-03-09 00:24:02 +00:00
parent f8964007f8
commit f30a9f1c86

View File

@ -381,9 +381,13 @@ PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC)
case '&':
smart_str_appendl(&s, "&", sizeof("&")-1);
break;
/* Commented out since this is not necessary */
/*
case ' ':
smart_str_appendl(&s, "  ", sizeof("  ")-1);
smart_str_appendl(&s, " ", sizeof(" ")-1);
break;
*/
case '\t':
smart_str_appendl(&s, "    ", sizeof("    ")-1);
break;