We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2fc42 commit 8a0a3c8Copy full SHA for 8a0a3c8
resources/lib/UnityLDAP.php
@@ -134,7 +134,7 @@ public function getNextPiGIDNumber($UnitySQL)
134
$max_pigid = $UnitySQL->getSiteVar('MAX_PIGID');
135
$new_pigid = $max_pigid + 1;
136
137
- while ($this->PiGIDNumInUse($new_pigid)) {
+ while ($this->PIGIDNumInUse($new_pigid)) {
138
$new_pigid++;
139
}
140
@@ -169,7 +169,7 @@ private function UIDNumInUse($id)
169
return false;
170
171
172
- private function PiGIDNumInUse($id)
+ private function PIGIDNumInUse($id)
173
{
174
$pi_groups = $this->pi_groupOU->getChildrenArray(true);
175
foreach ($pi_groups as $pi_group) {
0 commit comments