Browse Source

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

experimental/ZendEngine2
foobar 25 years ago
parent
commit
f30a9f1c86
  1. 6
      main/main.c

6
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;

Loading…
Cancel
Save