aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-04-23 21:51:49 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-04-23 21:51:49 +0200
commit8a97722464c1aa99f56c71abebc68b9565fdd29d (patch)
tree17676fe4538917ce6ec6416272113cba76f70198
parentbc48fe17048092d6b8d8bfc386dc3d446d5575ea (diff)
parenta8ecd30fe1fbee46a7605c60c95b813fdf26719b (diff)
downloadforums-8a97722464c1aa99f56c71abebc68b9565fdd29d.tar
forums-8a97722464c1aa99f56c71abebc68b9565fdd29d.tar.gz
forums-8a97722464c1aa99f56c71abebc68b9565fdd29d.tar.bz2
forums-8a97722464c1aa99f56c71abebc68b9565fdd29d.tar.xz
forums-8a97722464c1aa99f56c71abebc68b9565fdd29d.zip
Merge branch 'ticket/p/10147' into develop-olympus
* ticket/p/10147: [ticket/10147] Corrected a typo in includes/functions_template.php.
-rw-r--r--phpBB/includes/functions_template.php2
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);
}