]> git.mjollnir.org Git - moodle.git/commitdiff
Merged fix from stable for wrong function
authormoodler <moodler>
Tue, 14 Dec 2004 11:08:04 +0000 (11:08 +0000)
committermoodler <moodler>
Tue, 14 Dec 2004 11:08:04 +0000 (11:08 +0000)
mod/forum/view.php

index 35b39ae573cd81a8ac10a593588175466c164a63..ecfb1b27de560f4077416b4e88dcff875f2edc7d 100644 (file)
@@ -4,13 +4,13 @@
     require_once("lib.php");
     require_once("$CFG->dirroot/rss/rsslib.php");
 
-    $id      = optional_variable('id', 0, PARAM_INT);        // Course Module ID
-    $f       = optional_variable('f', 0, PARAM_INT);         // Forum ID
-    $mode    = optional_variable('mode', 0, PARAM_INT);      // Display mode (for single forum)
-    $showall = optional_variable('showall', '', PARAM_INT);  // show all discussions on one page
-    $group   = optional_variable('group', -1, PARAM_INT);    // choose the current group
-    $page    = optional_variable('page', 0, PARAM_INT);      // which page to show
-    $search  = optional_variable('search', '');              // search string
+    $id      = optional_param('id', 0, PARAM_INT);        // Course Module ID
+    $f       = optional_param('f', 0, PARAM_INT);         // Forum ID
+    $mode    = optional_param('mode', 0, PARAM_INT);      // Display mode (for single forum)
+    $showall = optional_param('showall', '', PARAM_INT);  // show all discussions on one page
+    $group   = optional_param('group', -1, PARAM_INT);    // choose the current group
+    $page    = optional_param('page', 0, PARAM_INT);      // which page to show
+    $search  = optional_param('search', '');              // search string
 
     if ($id) {
         if (! $cm = get_record("course_modules", "id", $id)) {