mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 21:49:15 +01:00
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:
parent
4de51c25ae
commit
17f5e50f57
@ -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');
|
||||
|
Loading…
x
Reference in New Issue
Block a user