diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2011-04-21 12:00:04 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2011-04-23 15:36:45 -0400 |
commit | a8ecd30fe1fbee46a7605c60c95b813fdf26719b (patch) | |
tree | 62f6c5fc72358364cf025425df7e31a342c31859 | |
parent | 0a8893498dbbb0cb7979fd5b35a3f424981e5d48 (diff) | |
download | forums-a8ecd30fe1fbee46a7605c60c95b813fdf26719b.tar forums-a8ecd30fe1fbee46a7605c60c95b813fdf26719b.tar.gz forums-a8ecd30fe1fbee46a7605c60c95b813fdf26719b.tar.bz2 forums-a8ecd30fe1fbee46a7605c60c95b813fdf26719b.tar.xz forums-a8ecd30fe1fbee46a7605c60c95b813fdf26719b.zip |
[ticket/10147] Corrected a typo in includes/functions_template.php.
PHPBB3-10147
-rw-r--r-- | phpBB/includes/functions_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_template.php b/phpBB/includes/functions_template.php index 1d3a4d74f8..8636dfe010 100644 --- a/phpBB/includes/functions_template.php +++ b/phpBB/includes/functions_template.php @@ -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); } |