From f30a9f1c8611d9b292c2cae758dd48f212c29866 Mon Sep 17 00:00:00 2001 From: foobar Date: Sat, 9 Mar 2002 00:24:02 +0000 Subject: [PATCH] - Commented out the space escaping. Works now as it did before. --- main/main.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main/main.c b/main/main.c index 4dfb199b72..4d7d0b7cf3 100644 --- a/main/main.c +++ b/main/main.c @@ -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; -- 2.40.0