small fix to button

This commit is contained in:
jamiesensei
2007-01-04 11:30:37 +00:00
parent c233a6c3f9
commit ff768bc57e
+3 -1
View 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
}
?>