diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 4507d11879b..58b9e0a9525 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1823,8 +1823,6 @@ function forum_get_all_discussion_posts($discussionid, $sort, $tracking=false) { $params = array(); if ($tracking) { - $now = time(); - $cutoffdate = $now - ($CFG->forum_oldpostdays * 24 * 3600); $tr_sel = ", fr.id AS postread"; $tr_join = "LEFT JOIN {forum_read} fr ON (fr.postid = p.id AND fr.userid = ?)"; $params[] = $USER->id; @@ -2935,8 +2933,6 @@ function forum_get_discussions_count($cm) { $groupselect = ""; } - $cutoffdate = $now - ($CFG->forum_oldpostdays*24*60*60); - $timelimit = ""; if (!empty($CFG->forum_enabletimedposts)) {