1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/12382] Add template test for subloops inside events

PHPBB3-12382
This commit is contained in:
Joas Schilling
2014-04-10 16:06:00 +02:00
parent 377fb770fb
commit 09804bbae8
3 changed files with 18 additions and 0 deletions

View File

@@ -90,6 +90,19 @@ Zeta test event in all',
array(),
'event_loop0|event_loop1|event_loop2',
),
array(
'EVENT with subloop in loop',
'ext_trivial',
array('silver'),
'event_subloop.html',
array(),
array(
'event_loop' => array(array()),
'event_loop.subloop' => array(array()),
),
array(),
'event_loop[0[subloop:0]]',
),
);
}