mirror of
https://github.com/php/php-src.git
synced 2024-12-01 13:54:10 +08:00
- Commented out the space escaping. Works now as it did before.
This commit is contained in:
parent
f8964007f8
commit
f30a9f1c86
@ -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…
Reference in New Issue
Block a user