aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCrizzo <mail@crizzo.de>2014-03-11 18:45:46 +0100
committerCrizzo <mail@crizzo.de>2014-03-11 18:45:46 +0100
commitd95d062a4276504e1855d44aaddba2ff9bb974d6 (patch)
tree27bb454357fe87a467aac66c42c426ca8b6b32da
parent239f72dddaefec7f0f6ab1dbddacf8e7340ed7dc (diff)
downloadforums-d95d062a4276504e1855d44aaddba2ff9bb974d6.tar
forums-d95d062a4276504e1855d44aaddba2ff9bb974d6.tar.gz
forums-d95d062a4276504e1855d44aaddba2ff9bb974d6.tar.bz2
forums-d95d062a4276504e1855d44aaddba2ff9bb974d6.tar.xz
forums-d95d062a4276504e1855d44aaddba2ff9bb974d6.zip
[ticket/10549] using correct variable in includes/functions_module.php too
PHPBB3-10549
-rw-r--r--phpBB/includes/functions_module.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_module.php b/phpBB/includes/functions_module.php
index bb6913a572..0cc2425b28 100644
--- a/phpBB/includes/functions_module.php
+++ b/phpBB/includes/functions_module.php
@@ -450,7 +450,7 @@ class p_master
if (!class_exists("{$this->p_class}_$this->p_name"))
{
- trigger_error($user->lang('MODULE_FILE_RIGHT_CLASS', "$module_path/{$this->p_class}_$this->p_name.$phpEx", "{$this->p_class}_$this->p_name"), E_USER_ERROR);
+ trigger_error($user->lang('MODULE_FILE_INCORRECT_CLASS', "$module_path/{$this->p_class}_$this->p_name.$phpEx", "{$this->p_class}_$this->p_name"), E_USER_ERROR);
}
if (!empty($mode))