From 6bb55e80a4070fa82c09f2b7442cde3391a5c184 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Sun, 10 Apr 2011 23:50:24 -0400 Subject: [PATCH] [ticket/10136] Added missing $request globalizations in functions.php. PHPBB3-10136 --- phpBB/includes/functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index f910611b76..52e3aafe15 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1380,7 +1380,7 @@ function get_topic_tracking($forum_id, $topic_ids, &$rowset, $forum_mark_time, $ */ function get_complete_topic_tracking($forum_id, $topic_ids, $global_announce_list = false) { - global $config, $user; + global $config, $user, $request; $last_read = array(); @@ -1644,7 +1644,7 @@ function get_unread_topics($user_id = false, $sql_extra = '', $sql_sort = '', $s */ function update_forum_tracking_info($forum_id, $forum_last_post_time, $f_mark_time = false, $mark_time_forum = false) { - global $db, $tracking_topics, $user, $config; + global $db, $tracking_topics, $user, $config, $request; // Determine the users last forum mark time if not given. if ($mark_time_forum === false)