From 60b9a5658f6a0903460920cb78f72d8b7716759d Mon Sep 17 00:00:00 2001 From: moodler Date: Sun, 14 Dec 2003 15:03:23 +0000 Subject: [PATCH] FIxed some faulty form 'target's that weren't using $CFG->framename --- lib/weblib.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index 1530c19f27..406e99fea8 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -1364,7 +1364,7 @@ function update_course_icon($courseid) { $string = get_string("turneditingon"); $edit = "on"; } - return "
wwwroot/course/view.php\">". + return "framename\" method=\"get\" action=\"$CFG->wwwroot/course/view.php\">". "". "". "
"; @@ -1377,7 +1377,7 @@ function update_module_button($moduleid, $courseid, $string) { if (isteacheredit($courseid)) { $string = get_string("updatethis", "", $string); - return "
wwwroot/course/mod.php\">". + return "framename\" method=\"get\" action=\"$CFG->wwwroot/course/mod.php\">". "". "". "
"; @@ -1398,7 +1398,7 @@ function update_category_button($categoryid) { $string = get_string("turneditingon"); $edit = "on"; } - return "
wwwroot/course/category.php\">". + return "framename\" method=\"get\" action=\"$CFG->wwwroot/course/category.php\">". "". "". "
"; @@ -1417,7 +1417,7 @@ function update_categories_button() { $string = get_string("turneditingon"); $edit = "on"; } - return "
wwwroot/course/index.php\">". + return "framename\" method=\"get\" action=\"$CFG->wwwroot/course/index.php\">". "". "
"; } -- 2.39.5