aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/controller/helper.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-01-31 00:57:32 +0100
committerJoas Schilling <nickvergessen@gmx.de>2015-01-31 00:57:32 +0100
commitc14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6 (patch)
treeafe909ed71222c0b603e624b1ae70062c2afc9e8 /phpBB/phpbb/controller/helper.php
parent14ab0071288b6b6251920c97a1aded4e5fb3141c (diff)
parent67478a0f94611ba642e31549b52d83f04a4c8028 (diff)
downloadforums-c14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6.tar
forums-c14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6.tar.gz
forums-c14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6.tar.bz2
forums-c14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6.tar.xz
forums-c14cf0457dedfd0c1a8a72dc0571e60ccb8b03f6.zip
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'phpBB/phpbb/controller/helper.php')
-rw-r--r--phpBB/phpbb/controller/helper.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/phpBB/phpbb/controller/helper.php b/phpBB/phpbb/controller/helper.php
index 8c1aaac9dc..2790ea4277 100644
--- a/phpBB/phpbb/controller/helper.php
+++ b/phpBB/phpbb/controller/helper.php
@@ -192,7 +192,7 @@ class helper
*/
public function error($message, $code = 500)
{
- return $this->message($message, false, $code);
+ return $this->message($message, array(), 'INFORMATION', $code);
}
/**
@@ -200,19 +200,21 @@ class helper
*
* In case of an error, please throw an exception instead
*
- * @param string $message The message to display
- * @param string|false $title Title for the message
+ * @param string $message The message to display (must be a language variable)
+ * @param array $parameters The parameters to use with the language var
+ * @param string $title Title for the message (must be a language variable)
* @param int $code The HTTP status code (e.g. 404, 500, 503, etc.)
* @return Response A Response instance
*/
- public function message($message, $title = false, $code = 200)
+ public function message($message, array $parameters = array(), $title = 'INFORMATION', $code = 200)
{
+ array_unshift($parameters, $message);
$this->template->assign_vars(array(
- 'MESSAGE_TEXT' => $message,
- 'MESSAGE_TITLE' => ($title === false) ? $this->user->lang('INFORMATION') : $title,
+ 'MESSAGE_TEXT' => call_user_func_array(array($this->user, 'lang'), $parameters),
+ '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);
}
/**