mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 01:46:45 +02:00
MDL-19416 fixed PHP 5.3 compatiblity issue - fixes weird use of constructors in quickforms
This commit is contained in:
parent
29750da13d
commit
3e8b394e08
15 changed files with 53 additions and 1 deletions
|
@ -11,6 +11,9 @@ require_once("HTML/QuickForm/submit.php");
|
|||
* @access public
|
||||
*/
|
||||
class MoodleQuickForm_submit extends HTML_QuickForm_submit {
|
||||
function MoodleQuickForm_submit($elementName=null, $value=null, $attributes=null) {
|
||||
parent::HTML_QuickForm_submit($elementName, $value, $attributes);
|
||||
}
|
||||
/**
|
||||
* Called by HTML_QuickForm whenever form event is made on this element
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue