Skip to content

Commit

Permalink
MDL-37870 Fix the number of parameters when calling the parent constr…
Browse files Browse the repository at this point in the history
…uctor
  • Loading branch information
mudrd8mz authored and stronk7 committed Feb 5, 2013
1 parent 0da3d58 commit c90c4f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backup/util/xml/parser/progressive_parser.class.php
Expand Up @@ -278,6 +278,6 @@ protected function char_data($parser, $data) {
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);
}
}

0 comments on commit c90c4f7

Please sign in to comment.