MDL-34311 mod_url: Missing setType on the external url

This commit is contained in:
Dan Poltawski 2013-03-25 09:38:56 +08:00
parent 9f9dde40ee
commit b716cd2b70

View File

@ -50,6 +50,7 @@ class mod_url_mod_form extends moodleform_mod {
//-------------------------------------------------------
$mform->addElement('header', 'content', get_string('contentheader', 'url'));
$mform->addElement('url', 'externalurl', get_string('externalurl', 'url'), array('size'=>'60'), array('usefilepicker'=>true));
$mform->setType('externalurl', PARAM_URL);
$mform->addRule('externalurl', null, 'required', null, 'client');
//-------------------------------------------------------
$mform->addElement('header', 'optionssection', get_string('optionsheader', 'url'));