diff options
author | Cesar G <prototech91@gmail.com> | 2014-03-14 19:19:39 -0700 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-03-19 03:08:33 -0700 |
commit | 3da1f6d989357c9076ffde532cfbbd3d6375aa3c (patch) | |
tree | 072222bc7b1538cbfd60d706eb5d4fbf6d672b99 /phpBB/phpbb | |
parent | 285ad0f6faac275c56576616ed6a880a7f88e94b (diff) | |
download | forums-3da1f6d989357c9076ffde532cfbbd3d6375aa3c.tar forums-3da1f6d989357c9076ffde532cfbbd3d6375aa3c.tar.gz forums-3da1f6d989357c9076ffde532cfbbd3d6375aa3c.tar.bz2 forums-3da1f6d989357c9076ffde532cfbbd3d6375aa3c.tar.xz forums-3da1f6d989357c9076ffde532cfbbd3d6375aa3c.zip |
[ticket/11959] Rename phpbb_gen_string_list() & fix incorrect var name.
PHPBB3-11959
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/notification/type/post.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/phpbb/notification/type/post.php b/phpBB/phpbb/notification/type/post.php index 62c8bd52cb..d3491a3f5e 100644 --- a/phpBB/phpbb/notification/type/post.php +++ b/phpBB/phpbb/notification/type/post.php @@ -211,14 +211,14 @@ class post extends \phpbb\notification\type\base $usernames[] = $this->user->lang('NOTIFICATION_X_OTHERS', $trimmed_responders_cnt); } - if (!function_exists('phpbb_gen_string_list')) + if (!function_exists('phpbb_generate_string_list')) { - include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ex); + include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext); } return $this->user->lang( $this->language_key, - phpbb_gen_string_list($usernames, $this->user), + phpbb_generate_string_list($usernames, $this->user), censor_text($this->get_data('topic_title')), $responders_cnt ); |