Merge branch 'MDL-36905' of git://github.com/rwijaya/moodle

This commit is contained in:
Sam Hemelryk
2012-12-11 15:44:37 +13:00
3 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ class mod_assign_grading_batch_operations_form extends moodleform {
$mform->addElement('hidden', 'returnaction', 'grading');
$objs = array();
$objs[] =& $mform->createElement('select', 'operation', '', $options);
$objs[] =& $mform->createElement('select', 'operation', get_string('chooseoperation', 'assign'), $options);
$objs[] =& $mform->createElement('submit', 'submit', get_string('go'));
$mform->addElement('group', 'actionsgrp', get_string('batchoperationsdescription', 'assign'), $objs, ' ', false);
+2
View File
@@ -72,6 +72,8 @@ $string['batchoperationreverttodraft'] = 'revert submissions to draft';
$string['blindmarking'] = 'Blind marking';
$string['blindmarking_help'] = 'Blind marking hides the identity of students to markers. Blind marking settings will be locked once a submission or grade has been made in relation to this assignment.';
$string['changegradewarning'] = 'This assignment has graded submissions and changing the grade will not automatically re-calculate existing submission grades. You must re-grade all existing submissions, if you wish to change the grade.';
$string['choosegradingaction'] = 'Grading action';
$string['chooseoperation'] = 'Choose operation';
$string['comment'] = 'Comment';
$string['completionsubmit'] = 'Student must submit to this activity to complete it';
$string['conversionexception'] = 'Could not convert assignment. Exception was: {$a}.';
+1
View File
@@ -2325,6 +2325,7 @@ class assign {
}
$gradingactions = new url_select($links);
$gradingactions->set_label(get_string('choosegradingaction', 'assign'));
$gradingmanager = get_grading_manager($this->get_context(), 'mod_assign', 'submissions');