From 9577d9037e102104ae3f95231cd172923ad11961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come.bernigaud@opensides.be> Date: Tue, 12 Jul 2016 05:19:35 +0200 Subject: [PATCH] Fixes #4998 serverService still contained a call to old contructor --- systems/admin/systems/class_serverService.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/admin/systems/class_serverService.inc b/systems/admin/systems/class_serverService.inc index 34ddab5bfc..a8858f2e2f 100644 --- a/systems/admin/systems/class_serverService.inc +++ b/systems/admin/systems/class_serverService.inc @@ -187,7 +187,7 @@ class ServerService extends management protected function cancelEdit() { if ($this->backup == NULL && $this->current) { - $this->plugins[$this->current] = new $this->current(NULL, $this->dn, $this); + $this->plugins[$this->current] = new $this->current($this->dn, $this); $this->plugins[$this->current]->set_acl_base($this->acl_base); $this->plugins[$this->current]->set_acl_category(preg_replace("/\/$/", "", $this->acl_category)); -- GitLab