From: jerome Date: Tue, 29 Apr 2008 02:36:34 +0000 (+0000) Subject: MDL-13815 - Course summary text is optional and empty by default now X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=4d4d13019eb83c836b20892b0a8084b1240ed829;p=moodle.git MDL-13815 - Course summary text is optional and empty by default now --- diff --git a/course/edit_form.php b/course/edit_form.php index 1c0431cd3d..cfbaf00e54 100644 --- a/course/edit_form.php +++ b/course/edit_form.php @@ -92,8 +92,6 @@ class course_edit_form extends moodleform { $mform->addElement('htmleditor','summary', get_string('summary'), array('rows'=> '10', 'cols'=>'65')); $mform->setHelpButton('summary', array('text', get_string('helptext')), true); - $mform->setDefault('summary', get_string('defaultcoursesummary')); - $mform->addRule('summary', get_string('missingsummary'), 'required', null, 'client'); $mform->setType('summary', PARAM_RAW); $courseformats = get_list_of_plugins('course/format');