1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-04 08:08:12 +01:00
Nathaniel Guse c0b9db1c62 [ticket/11701] Fix loops var check
PHPBB3-11701
2013-07-23 09:26:50 -05:00

40 lines
549 B
HTML

<!-- IF .nonexistent_loop -->
nonexistent
<!-- ENDIF -->
<!-- IF .nonexistent_loop == 0 -->
nonexistent = 0
<!-- ENDIF -->
<!-- IF ! .nonexistent_loop -->
! nonexistent
<!-- ENDIF -->
<!-- IF .empty_loop -->
empty
<!-- ENDIF -->
<!-- IF .empty_loop == 0 -->
empty = 0
<!-- ENDIF -->
<!-- IF ! .empty_loop -->
! empty
<!-- ENDIF -->
<!-- IF .test_loop -->
loop
<!-- ENDIF -->
<!-- IF .test_loop == 0 -->
loop = 0
<!-- ENDIF -->
<!-- IF ! .test_loop -->
! loop
<!-- ENDIF -->
<!-- BEGIN test_loop -->
in loop
<!-- END test_loop -->