]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-13826 link/file resource - check maximum length ; merged from 19_STABLE
authorstronk7 <stronk7>
Thu, 7 May 2009 20:41:33 +0000 (20:41 +0000)
committerstronk7 <stronk7>
Thu, 7 May 2009 20:41:33 +0000 (20:41 +0000)
mod/resource/type/file/resource.class.php

index 30eb00554a2db404df1fadeb2ded465c5bdf268e..7c87efe4f46ef2babeba1d745227ffd4574d70cd 100644 (file)
@@ -789,8 +789,9 @@ class resource_file extends resource_base {
 
         $this->set_parameters(); // set the parameter array for the form
 
-        $mform->addElement('choosecoursefile', 'reference', get_string('location'));
+        $mform->addElement('choosecoursefile', 'reference', get_string('location'), null, array('maxlength' => 255, 'size' => 48));
         $mform->setDefault('reference', $CFG->resource_defaulturl);
+        $mform->addGroupRule('reference', array('value' => array(array(get_string('maximumchars', '', 255), 'maxlength', 255, 'client'))));
         $mform->addRule('name', null, 'required', null, 'client');
 
         if (!empty($CFG->resource_websearch)) {