From e57a314de8db6bbec9abe6f025d3fceabf49d8c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mudr=C3=A1k?= Date: Tue, 5 Feb 2013 04:47:41 +0100 Subject: [PATCH] MDL-37870 Fix the number of parameters when calling the parent constructor --- backup/util/xml/parser/progressive_parser.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backup/util/xml/parser/progressive_parser.class.php b/backup/util/xml/parser/progressive_parser.class.php index 91bc85fc4b2..d465aba9d42 100644 --- a/backup/util/xml/parser/progressive_parser.class.php +++ b/backup/util/xml/parser/progressive_parser.class.php @@ -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); } }