diff --git a/course/moodleform_mod.php b/course/moodleform_mod.php index 4abf1d07cb6..ba11d2db419 100644 --- a/course/moodleform_mod.php +++ b/course/moodleform_mod.php @@ -404,9 +404,9 @@ class moodleform_mod extends moodleform { $grouparray=array(); $grouparray[] =& $mform->createElement('select','conditiongradeitemid','',$gradeoptions); - $grouparray[] =& $mform->createElement('static', '', '',' '.get_string('grade_atleast','condition')); + $grouparray[] =& $mform->createElement('static', '', '',' '.get_string('grade_atleast','condition').' '); $grouparray[] =& $mform->createElement('text', 'conditiongrademin','',array('size'=>3)); - $grouparray[] =& $mform->createElement('static', '', '',' '.get_string('grade_upto','condition')); + $grouparray[] =& $mform->createElement('static', '', '',' '.get_string('grade_upto','condition').' '); $grouparray[] =& $mform->createElement('text', 'conditiongrademax','',array('size'=>3)); $mform->setType('conditiongrademin',PARAM_FLOAT); $mform->setType('conditiongrademax',PARAM_FLOAT);