Merge branch 'MDL-33885-22' of git://github.com/FMCorz/moodle into MOODLE_22_STABLE
This commit is contained in:
+2
-1
@@ -38,11 +38,12 @@ class blog_edit_form extends moodleform {
|
||||
|
||||
$mform->addElement('header', 'general', get_string('general', 'form'));
|
||||
|
||||
$mform->addElement('text', 'subject', get_string('entrytitle', 'blog'), 'size="60"');
|
||||
$mform->addElement('text', 'subject', get_string('entrytitle', 'blog'), array('size' => 60, 'maxlength' => 128));
|
||||
$mform->addElement('editor', 'summary_editor', get_string('entrybody', 'blog'), null, $summaryoptions);
|
||||
|
||||
$mform->setType('subject', PARAM_TEXT);
|
||||
$mform->addRule('subject', get_string('emptytitle', 'blog'), 'required', null, 'client');
|
||||
$mform->addRule('subject', get_string('maximumchars', '', 128), 'maxlength', 128, 'client');
|
||||
|
||||
$mform->setType('summary_editor', PARAM_RAW);
|
||||
$mform->addRule('summary_editor', get_string('emptybody', 'blog'), 'required', null, 'client');
|
||||
|
||||
Reference in New Issue
Block a user