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

This commit is contained in:
David Mudrák
2013-02-05 10:19:52 +01:00
committed by Eloy Lafuente (stronk7)
parent d854035ffe
commit e57a314de8
@@ -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);
}
}