MDL-46073 badges: Make sure html tags are not used in badge description

Signed-off-by: Yuliya Bozhko <yuliya.bozhko@totaralms.com>
This commit is contained in:
Yuliya Bozhko 2014-07-08 09:34:51 +12:00
parent 4de51c25ae
commit 17f5e50f57

View File

@ -54,7 +54,7 @@ class edit_details_form extends moodleform {
$mform->addRule('name', get_string('maximumchars', '', 255), 'maxlength', 255, 'client');
$mform->addElement('textarea', 'description', get_string('description', 'badges'), 'wrap="virtual" rows="8" cols="70"');
$mform->setType('description', PARAM_CLEANHTML);
$mform->setType('description', PARAM_NOTAGS);
$mform->addRule('description', null, 'required');
$str = $action == 'new' ? get_string('badgeimage', 'badges') : get_string('newimage', 'badges');