1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

Merge branch 'ticket/p/10147' into develop-olympus

* ticket/p/10147:
  [ticket/10147] Corrected a typo in includes/functions_template.php.
This commit is contained in:
Andreas Fischer 2011-04-23 21:51:49 +02:00
commit 8a97722464

View File

@ -322,7 +322,7 @@ class template_compile
// Is the designer wanting to call another loop in a loop?
if (strpos($tag_args, '!') === 0)
{
// Count the number if ! occurrences (not allowed in vars)
// Count the number of ! occurrences (not allowed in vars)
$no_nesting = substr_count($tag_args, '!');
$tag_args = substr($tag_args, $no_nesting);
}