Merge pull request #563 from htacg/issue-392

Issue 392 - creeping php
This commit is contained in:
Geoff McLane 2017-05-27 16:33:15 +02:00 committed by GitHub
commit 4224227cb2
1 changed files with 2 additions and 0 deletions

View File

@ -1935,6 +1935,8 @@ static Bool TY_(nodeIsTextLike)( Node *node )
return yes;
if ( node->type == AspTag )
return yes;
if (node->type == PhpTag)
return yes; /* Issue #392 */
/* add other text like nodes... */
return no;
}