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:
+2
-1
@@ -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 '';
|
||||
|
||||
Reference in New Issue
Block a user