aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2012-11-13 09:51:23 -0500
committerDavid King <imkingdavid@gmail.com>2012-11-16 16:47:28 -0500
commitb5255d4ea4f9e5e1d8c2783555891a0d5a63aca2 (patch)
tree5404a9eb8ab605d2108602ffc230c3f2451cf9e5 /phpBB/includes
parent1c5a82c4110cfbc328281d832bb38387df95c39d (diff)
downloadforums-b5255d4ea4f9e5e1d8c2783555891a0d5a63aca2.tar
forums-b5255d4ea4f9e5e1d8c2783555891a0d5a63aca2.tar.gz
forums-b5255d4ea4f9e5e1d8c2783555891a0d5a63aca2.tar.bz2
forums-b5255d4ea4f9e5e1d8c2783555891a0d5a63aca2.tar.xz
forums-b5255d4ea4f9e5e1d8c2783555891a0d5a63aca2.zip
[feature/controller] Fix syntax error in template code
PHPBB3-10864
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/template/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php
index a6ae44969b..75bbbe2ef3 100644
--- a/phpBB/includes/template/template.php
+++ b/phpBB/includes/template/template.php
@@ -229,7 +229,7 @@ class phpbb_template
if (!$template_var)
{
- throw new RuntimeException($this->user->lang('TEMPLATE_CANNOT_BE_ASSIGNED')
+ throw new RuntimeException($this->user->lang('TEMPLATE_CANNOT_BE_ASSIGNED'));
}
$this->assign_var($template_var, $contents);