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

This commit is contained in:
Sam Hemelryk
2012-10-08 10:40:35 +13:00
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -103,6 +103,7 @@ $string['duedateno'] = 'No due date';
$string['duedatereached'] = 'The due date for this assignment has now passed';
$string['duedatevalidation'] = 'Due date must be after the allow submissions from date.';
$string['editsubmission'] = 'Edit my submission';
$string['editingstatus'] = 'Editing status';
$string['editaction'] = 'Actions...';
$string['extensionduedate'] = 'Extension due date';
$string['extensionnotafterduedate'] = 'Extension date must be after the due date';
+1 -1
View File
@@ -541,7 +541,7 @@ class mod_assign_renderer extends plugin_renderer_base {
// Show graders whether this submission is editable by students.
if ($status->view == assign_submission_status::GRADER_VIEW) {
$row = new html_table_row();
$cell1 = new html_table_cell(get_string('open', 'assign'));
$cell1 = new html_table_cell(get_string('editingstatus', 'assign'));
if ($status->canedit) {
$cell2 = new html_table_cell(get_string('submissioneditable', 'assign'));
$cell2->attributes = array('class'=>'submissioneditable');