diff options
| author | Masaki Fujimoto <fujimoto@php.net> | 2002-10-20 02:57:40 +0000 |
|---|---|---|
| committer | Masaki Fujimoto <fujimoto@php.net> | 2002-10-20 02:57:40 +0000 |
| commit | a6ecdca0ef8f3be703db66ffde09b992b3b4cfb0 (patch) | |
| tree | 8d7581db250b0c44a7a0c40f3f1476d60f1e9d28 /main/main.c | |
| parent | 4efcd0f5d1c3e661cdcee614229fa9df0817cd3a (diff) | |
| download | php-git-a6ecdca0ef8f3be703db66ffde09b992b3b4cfb0.tar.gz | |
fixed highlight related bugs (in case shift_jis input/output filters are enabled)
Diffstat (limited to 'main/main.c')
| -rw-r--r-- | main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c index 3b2dc0d107..6176574d3b 100644 --- a/main/main.c +++ b/main/main.c @@ -518,7 +518,7 @@ PHPAPI void php_error_docref2(const char *docref TSRMLS_DC, const char *param1, /* {{{ php_html_puts */ PHPAPI void php_html_puts(const char *str, uint size TSRMLS_DC) { - zend_html_puts(str, size); + zend_html_puts(str, size TSRMLS_CC); } /* }}} */ |
