MDL-37870 Fix the number of parameters when calling the parent constructor

This commit is contained in:
David Mudrák 2013-02-05 04:47:41 +01:00
parent 1918a2452e
commit 5aeff5ebc0

View File

@ -278,6 +278,6 @@ class progressive_parser {
class progressive_parser_exception extends moodle_exception {
public function __construct($errorcode, $a=NULL, $debuginfo=null) {
parent::__construct($errorcode, 'error', '', $a, null, $debuginfo);
parent::__construct($errorcode, 'error', '', $a, $debuginfo);
}
}