diff options
author | Matt Friedman <maf675@gmail.com> | 2015-01-30 15:28:25 -0800 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-31 00:56:59 +0100 |
commit | e6bbde2bffc4ff90de1b754d3682bc7f1ca1d67c (patch) | |
tree | 8c4fb92289cb1157663bc37debbeca21a24472bb | |
parent | [ticket/13553] Make title var accept a lang key var (diff) | |
download | phpbb-e6bbde2bffc4ff90de1b754d3682bc7f1ca1d67c.tar.gz phpbb-e6bbde2bffc4ff90de1b754d3682bc7f1ca1d67c.tar.bz2 phpbb-e6bbde2bffc4ff90de1b754d3682bc7f1ca1d67c.zip |
[ticket/13553] Use defined title value in page headers too
PHPBB3-13553
-rw-r--r-- | phpBB/phpbb/controller/helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php index 8b0efae08a..c6c470e91b 100644 --- a/phpBB/phpbb/controller/helper.php +++ b/phpBB/phpbb/controller/helper.php @@ -211,7 +211,7 @@ class helper 'MESSAGE_TITLE' => $this->user->lang($title), )); - return $this->render('message_body.html', $this->user->lang('INFORMATION'), $code); + return $this->render('message_body.html', $this->user->lang($title), $code); } /** |