1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[ticket/11816] Fix multiple parenthesis as well before $VARs in templates

PHPBB3-11816
This commit is contained in:
Nathan Guse
2013-09-19 12:40:53 -05:00
parent 6ba2fb6d62
commit 9152455d70
3 changed files with 8 additions and 5 deletions

View File

@@ -10,6 +10,9 @@ $VALUE == 'abc'
<!-- IF ($VALUE == 'abc') -->
($VALUE == 'abc')
<!-- ENDIF -->
<!-- IF (($VALUE == 'abc')) -->
(($VALUE == 'abc'))
<!-- ENDIF -->
<!-- IF !$DOESNT_EXIST -->
!$DOESNT_EXIST
<!-- ENDIF -->