MDL-13815 - Course summary text is optional and empty by default now

This commit is contained in:
jerome
2008-04-29 03:51:43 +00:00
parent fbc1f0e5ba
commit a671e19ae8
-2
View File
@@ -81,8 +81,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');