-
Bug
-
Resolution: Fixed
-
Critical
-
1.9
-
None
-
MOODLE_19_STABLE
-
MOODLE_19_STABLE
Tim reported some weirdness related to new parameter files in mform->validate(),
I can not reproduce it on my PHP 5.2, the is_validated is calling the validate() with two parameters now, maybe the problem is in method overriding
Tim could you please test following code snippet on your server that shows those errors/warnings:
<?php
require ('config.php');
class a {
function go($c, $d)
}
class b {
function go($c)
}
$a = new a();
$a->go(1, 2);
$b = new b();
$b->go(1, 2);
die;
- has been marked as being related by
-
MDL-75836 moodleform_mod overwrites errors from moodleform
-
- Closed
-