From bc066478084a61ecccb58f43f9789516cf1ce257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=B4me=20Chilliet?= <come@opensides.be> Date: Wed, 6 Jul 2016 09:49:06 +0200 Subject: [PATCH] Fixes #4981 Used the wrong var in aclManagement --- plugins/admin/acl/class_aclManagement.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/admin/acl/class_aclManagement.inc b/plugins/admin/acl/class_aclManagement.inc index 11510d616..28b3b493b 100644 --- a/plugins/admin/acl/class_aclManagement.inc +++ b/plugins/admin/acl/class_aclManagement.inc @@ -184,7 +184,7 @@ class aclManagement extends simpleManagement $type = 'aclAssignment'; /* This might throw an exception which is catched in aclAssignmentCreationDialog */ - $tabObject = objects::open($this->dn, $type); + $tabObject = objects::open($dn, $type); /* This will happen only if the exception is not thrown */ $this->closeDialogs(); -- GitLab