From 9271e42441d99182ee9fa5f4e04882d8b3b60a1a Mon Sep 17 00:00:00 2001 From: sam_marshall Date: Fri, 19 Dec 2008 11:33:28 +0000 Subject: [PATCH] MDL-15499 Minor fix to conditional activity form display in IE --- course/moodleform_mod.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/course/moodleform_mod.php b/course/moodleform_mod.php index 4abf1d07cb..ba11d2db41 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); -- 2.39.5