diff options
| author | Chris Smith <toonarmy@phpbb.com> | 2009-06-13 20:23:07 +0000 |
|---|---|---|
| committer | Chris Smith <toonarmy@phpbb.com> | 2009-06-13 20:23:07 +0000 |
| commit | 2839f3a964d214b9c2741f047cf69f1f48662462 (patch) | |
| tree | a603a83a6bc9ab389d25ad0ebcbc91552ec3a570 /tests/template/templates | |
| parent | fd1608ab8219e32f266d7cc4698c3f41a1be8446 (diff) | |
| download | forums-2839f3a964d214b9c2741f047cf69f1f48662462.tar forums-2839f3a964d214b9c2741f047cf69f1f48662462.tar.gz forums-2839f3a964d214b9c2741f047cf69f1f48662462.tar.bz2 forums-2839f3a964d214b9c2741f047cf69f1f48662462.tar.xz forums-2839f3a964d214b9c2741f047cf69f1f48662462.zip | |
Fix most of the template test suite :)
git-svn-id: file:///svn/phpbb/trunk@9588 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'tests/template/templates')
| -rw-r--r-- | tests/template/templates/define.html | 6 | ||||
| -rw-r--r-- | tests/template/templates/if.html | 4 |
2 files changed, 10 insertions, 0 deletions
diff --git a/tests/template/templates/define.html b/tests/template/templates/define.html index b9a2219a02..aec5c010fd 100644 --- a/tests/template/templates/define.html +++ b/tests/template/templates/define.html @@ -22,6 +22,9 @@ <!-- END loop --> +<!-- BEGIN test --> + <!-- BEGIN deep --> + <!-- BEGIN defines --> <!-- DEFINE test.deep.defines.$VALUE = 12 * 12 --> {test.deep.defines.$VALUE} @@ -33,3 +36,6 @@ <!-- UNDEFINE test.deep.defines.$VALUE --> {test.deep.defines.$VALUE} + <!-- END defines --> + <!-- END deep --> +<!-- END test --> diff --git a/tests/template/templates/if.html b/tests/template/templates/if.html index 3ed7a0c2e4..8ec3e66449 100644 --- a/tests/template/templates/if.html +++ b/tests/template/templates/if.html @@ -5,3 +5,7 @@ <!-- ELSE --> 0 <!-- ENDIF --> + +<!-- IF !!(S_VALUE > S_OTHER_VALUE) --> +0 +<!-- ENDIF --> |
