-
Bug
-
Resolution: Not a bug
-
Critical
-
None
-
2.9.4, 3.0.2, 3.1.4
-
MOODLE_29_STABLE, MOODLE_30_STABLE, MOODLE_31_STABLE
-
Easy
Method _loadElement in lib/pear/HTML/QuickForm.php statically invokes own method isTypeRegistered on line 559 like this
if (!HTML_QuickForm::isTypeRegistered($type)) {
while it is a not-static method and should be invoked like this
if (!$this->isTypeRegistered($type)) {
- has a non-specific relationship to
-
MDL-52313 Do not call grandparent constructor in form elements
-
- Reopened
-
- is duplicated by
-
MDL-58076 Partial backport of 7.1 changes to Moodle 3.1: Creating a course in Moodle 3.1 using PHP 7.1 throws exception.
-
- Closed
-
- will be (partly) resolved by
-
MDL-55123 Group mform elements call non-static function statically and fail in php 7.1
-
- Closed
-