Skip to content

Commit

Permalink
MDL-33860: Use get_string for All option in assignment grading table
Browse files Browse the repository at this point in the history
  • Loading branch information
Damyon Wiese committed Jun 21, 2012
1 parent 088511d commit 7056953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/assign/gradingoptionsform.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function definition() {

$mform->addElement('header', 'general', get_string('gradingoptions', 'assign'));
// visible elements
$options = array(-1=>'All',10=>'10', 20=>'20', 50=>'50', 100=>'100');
$options = array(-1=>get_string('all'),10=>'10', 20=>'20', 50=>'50', 100=>'100');
$mform->addElement('select', 'perpage', get_string('assignmentsperpage', 'assign'), $options);
$options = array('' => get_string('filternone', 'assign'),
ASSIGN_FILTER_SUBMITTED => get_string('filtersubmitted', 'assign'),
Expand Down

0 comments on commit 7056953

Please sign in to comment.