]> git.mjollnir.org Git - moodle.git/commitdiff
small fix to button
authorjamiesensei <jamiesensei>
Thu, 4 Jan 2007 11:30:37 +0000 (11:30 +0000)
committerjamiesensei <jamiesensei>
Thu, 4 Jan 2007 11:30:37 +0000 (11:30 +0000)
lib/form/choosecoursefile.php

index 7315c04536927fd384d96a6b6f8b5984fd70a48d..fb62b8ff8397b22e7d9b3e84fb2a83945c167417 100644 (file)
@@ -68,7 +68,7 @@ class MoodleQuickForm_choosecoursefile extends MoodleQuickForm_group
         $this->_elements[0] =& MoodleQuickForm::createElement('text', 'value', '');
         $this->_elements[1] =& MoodleQuickForm::createElement('button', 'popup', get_string('chooseafile', 'resource') .' ...');
 
-        $button=$this->_elements[1];
+        $button =& $this->_elements[1];
 
         if ($this->_options['courseid']!==null){
             $courseid=$this->_options['courseid'];
@@ -86,6 +86,7 @@ class MoodleQuickForm_choosecoursefile extends MoodleQuickForm_group
 
         $buttonattributes = array('title'=>get_string("chooseafile", "resource"),
                   'onclick'=>"return openpopup('$url', '".$button->getName()."', '$options', $fullscreen);");
+
         $button->updateAttributes($buttonattributes);
     }
     /**
@@ -139,5 +140,6 @@ class MoodleQuickForm_choosecoursefile extends MoodleQuickForm_group
         return parent::onQuickFormEvent($event, $arg, $caller);
 
     } // end func onQuickFormEvent
+
 }
 ?>
\ No newline at end of file