From d5227972273d850a711fdcfdded9b45eff2afc1c Mon Sep 17 00:00:00 2001 From: Lukas Reschke <lukas@owncloud.com> Date: Fri, 4 Dec 2015 15:52:42 +0100 Subject: [PATCH] Use correct method signature This function takes only one parameter --- lib/private/app/infoparser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/app/infoparser.php b/lib/private/app/infoparser.php index 789f01e5bc4..22f705884bc 100644 --- a/lib/private/app/infoparser.php +++ b/lib/private/app/infoparser.php @@ -61,7 +61,7 @@ class InfoParser { if ($xml == false) { return null; } - $array = $this->xmlToArray($xml, false); + $array = $this->xmlToArray($xml); if (is_null($array)) { return null; } -- GitLab