diff options
Diffstat (limited to 'Zend/zend_indent.c')
-rw-r--r-- | Zend/zend_indent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_indent.c b/Zend/zend_indent.c index 223cbea791..a532bac81a 100644 --- a/Zend/zend_indent.c +++ b/Zend/zend_indent.c @@ -56,7 +56,7 @@ void zend_indent() token.type = 0; while ((token_type=lex_scan(&token CLS_CC))) { switch (token_type) { - case INLINE_HTML: + case T_INLINE_HTML: zend_write(zendtext, zendleng); break; case T_WHITESPACE: { @@ -127,8 +127,8 @@ dflt_printout: } if (token.type == IS_STRING) { switch (token_type) { - case PHP_OPEN_TAG: - case PHP_CLOSE_TAG: + case T_OPEN_TAG: + case T_CLOSE_TAG: case T_WHITESPACE: break; default: |