From 6be536374677b070d521f30328789fc2882c36d7 Mon Sep 17 00:00:00 2001 From: Jessica Legner Date: Mon, 27 Oct 2014 16:07:18 -0400 Subject: [PATCH] Fixing issue whilst using the addGroup function. I believe that this should be info, not ginfo --- lib/adLDAP/classes/adLDAPGroups.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/adLDAP/classes/adLDAPGroups.php b/lib/adLDAP/classes/adLDAPGroups.php index 5faa9c1..43deb60 100644 --- a/lib/adLDAP/classes/adLDAPGroups.php +++ b/lib/adLDAP/classes/adLDAPGroups.php @@ -63,7 +63,7 @@ public function __construct(adLDAP $adldap) { public function addGroup($parent,$child) { // Find the parent group's dn - $parentGroup = $this->ginfo($parent, array("cn")); + $parentGroup = $this->info($parent, array("cn")); if ($parentGroup[0]["dn"] === NULL) { return false; }