Merge branch 'MDL-35427' of git://github.com/netspotau/moodle-mod_assign

This commit is contained in:
Sam Hemelryk
2012-09-24 15:00:44 +12:00
+1 -4
View File
@@ -2010,10 +2010,6 @@ class assign {
if ($rownum == count($useridlist) - 1) {
$last = true;
}
// the placement of this is important so can pass the list of userids above
if ($offset) {
$_POST = array();
}
if (!$userid) {
throw new coding_exception('Row is out of bounds for the current grading table: ' . $rownum);
}
@@ -3853,6 +3849,7 @@ class assign {
$mform->setType('id', PARAM_INT);
$mform->addElement('hidden', 'rownum', $rownum);
$mform->setType('rownum', PARAM_INT);
$mform->setConstant('rownum', $rownum);
$mform->addElement('hidden', 'useridlist', implode(',', $useridlist));
$mform->setType('useridlist', PARAM_TEXT);
$mform->addElement('hidden', 'ajax', optional_param('ajax', 0, PARAM_INT));