MNet: Unable to change peer name due to incorrect form element type

This commit is contained in:
David Mudrak
2010-07-12 12:20:46 +00:00
parent d6cae0311a
commit 3cd7e90aa0
+1 -1
View File
@@ -77,7 +77,7 @@ class mnet_review_host_form extends moodleform {
$mform->addElement('text', 'name', get_string('site'));
$mform->setType('name', PARAM_NOTAGS);
$mform->addElement('text', 'wwwroot', get_string('hostname', 'mnet'));
$mform->setType('name', PARAM_URL);
$mform->setType('wwwroot', PARAM_URL);
$mform->addElement('textarea', 'public_key', get_string('publickey', 'mnet'), array('rows' => 17, 'cols' => 100, 'class' => 'smalltext'));
$mform->setType('public_key', PARAM_PEM);