diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-19 07:34:37 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-11-19 07:34:37 -0800 |
commit | bc33fd9950e6aad4abed3f22f44e2590f1749eab (patch) | |
tree | 90500ade418e8fbcdbc6158058823ca4b9c145cf /phpBB/includes | |
parent | 03e78c33fa85fab86ab0cb0802b33beada2a08d3 (diff) | |
download | forums-bc33fd9950e6aad4abed3f22f44e2590f1749eab.tar forums-bc33fd9950e6aad4abed3f22f44e2590f1749eab.tar.gz forums-bc33fd9950e6aad4abed3f22f44e2590f1749eab.tar.bz2 forums-bc33fd9950e6aad4abed3f22f44e2590f1749eab.tar.xz forums-bc33fd9950e6aad4abed3f22f44e2590f1749eab.zip |
[ticket/11672] Remove duplicate $request global.
PHPBB3-11672
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/functions_display.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_display.php b/phpBB/includes/functions_display.php index 140ffc42f0..5592aa89ba 100644 --- a/phpBB/includes/functions_display.php +++ b/phpBB/includes/functions_display.php @@ -1128,7 +1128,7 @@ function display_user_activity(&$userdata) */ function watch_topic_forum($mode, &$s_watching, $user_id, $forum_id, $topic_id, $notify_status = 'unset', $start = 0, $item_title = '') { - global $template, $db, $user, $phpEx, $start, $phpbb_root_path, $request; + global $template, $db, $user, $phpEx, $start, $phpbb_root_path; global $request; $table_sql = ($mode == 'forum') ? FORUMS_WATCH_TABLE : TOPICS_WATCH_TABLE; |