merged from 14_STABLE, the merging is getting a bit messy :-O

added sesskey to update_module_button(), error reported in moodle forum d=13835;
I made a quick fix - it seemed critical to me
This commit is contained in:
skodak
2004-10-12 18:47:39 +00:00
parent f8fb6ea230
commit bfce67a179
+2 -1
View File
@@ -2440,13 +2440,14 @@ function update_course_icon($courseid) {
* @todo Finish documenting this function
*/
function update_module_button($moduleid, $courseid, $string) {
global $CFG;
global $CFG, $USER;
if (isteacheredit($courseid)) {
$string = get_string('updatethis', '', $string);
return "<form target=\"$CFG->framename\" method=\"get\" action=\"$CFG->wwwroot/course/mod.php\">".
"<input type=\"hidden\" name=\"update\" value=\"$moduleid\" />".
"<input type=\"hidden\" name=\"return\" value=\"true\" />".
"<input type=\"hidden\" name=\"sesskey\" value=\"$USER->sesskey\" />".
"<input type=\"submit\" value=\"$string\" /></form>";
} else {
return '';