From 31f6b26d4ff2ce7b67e53c017a91e5b78285904e Mon Sep 17 00:00:00 2001 From: mark-nielsen Date: Thu, 6 Apr 2006 23:03:08 +0000 Subject: [PATCH] [BugFix] Action was using global variables - now is fetched with optional_param --- mod/lesson/view.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/mod/lesson/view.php b/mod/lesson/view.php index 2c975977a83..6431b0a7a13 100644 --- a/mod/lesson/view.php +++ b/mod/lesson/view.php @@ -7,10 +7,11 @@ require_once('locallib.php'); require_once('lib.php'); - $id = required_param('id', PARAM_INT); // Course Module ID - $pageid = optional_param('pageid', NULL, PARAM_INT); // Lesson Page ID - $display = optional_param('display', 0, PARAM_INT); // for teacherview action - $mode = optional_param('mode', '', PARAM_ALPHA); // for eacherview action todo use user pref + $id = required_param('id', PARAM_INT); // Course Module ID + $pageid = optional_param('pageid', NULL, PARAM_INT); // Lesson Page ID + $action = optional_param('action', '', PARAM_ALPHA); + $display = optional_param('display', 0, PARAM_INT); // for teacherview action + $mode = optional_param('mode', '', PARAM_ALPHA); // for eacherview action todo use user pref if (! $cm = get_record('course_modules', 'id', $id)) {