mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11816] !$DOESNT_EXIST test
PHPBB3-11816
This commit is contained in:
parent
0c5a39a3ed
commit
11317ef261
2 changed files with 4 additions and 1 deletions
|
@ -151,7 +151,7 @@ class phpbb_template_template_test extends phpbb_template_template_test_case
|
||||||
array(),
|
array(),
|
||||||
array('test_loop' => array(array(), array(), array(), array(), array(), array(), array()), 'test' => array(array()), 'test.deep' => array(array()), 'test.deep.defines' => array(array())),
|
array('test_loop' => array(array(), array(), array(), array(), array(), array(), array()), 'test' => array(array()), 'test.deep' => array(array()), 'test.deep.defines' => array(array())),
|
||||||
array(),
|
array(),
|
||||||
"xyz\nabc\n\$VALUE == 'abc'\n(\$VALUE == 'abc')\n(!\$DOESNT_EXIST)\nabc\nbar\nbar\nabc\ntest!@#$%^&*()_-=+{}[]:;\",<.>/?",
|
"xyz\nabc\n\$VALUE == 'abc'\n(\$VALUE == 'abc')\n!\$DOESNT_EXIST\n(!\$DOESNT_EXIST)\nabc\nbar\nbar\nabc\ntest!@#$%^&*()_-=+{}[]:;\",<.>/?",
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'define_advanced.html',
|
'define_advanced.html',
|
||||||
|
|
|
@ -10,6 +10,9 @@ $VALUE == 'abc'
|
||||||
<!-- IF ($VALUE == 'abc') -->
|
<!-- IF ($VALUE == 'abc') -->
|
||||||
($VALUE == 'abc')
|
($VALUE == 'abc')
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
<!-- IF !$DOESNT_EXIST -->
|
||||||
|
!$DOESNT_EXIST
|
||||||
|
<!-- ENDIF -->
|
||||||
<!-- IF (!$DOESNT_EXIST) -->
|
<!-- IF (!$DOESNT_EXIST) -->
|
||||||
(!$DOESNT_EXIST)
|
(!$DOESNT_EXIST)
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue