Skip to content

Commit 8a0a3c8

Browse files
committed
cs fix
1 parent fc2fc42 commit 8a0a3c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/lib/UnityLDAP.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public function getNextPiGIDNumber($UnitySQL)
134134
$max_pigid = $UnitySQL->getSiteVar('MAX_PIGID');
135135
$new_pigid = $max_pigid + 1;
136136

137-
while ($this->PiGIDNumInUse($new_pigid)) {
137+
while ($this->PIGIDNumInUse($new_pigid)) {
138138
$new_pigid++;
139139
}
140140

@@ -169,7 +169,7 @@ private function UIDNumInUse($id)
169169
return false;
170170
}
171171

172-
private function PiGIDNumInUse($id)
172+
private function PIGIDNumInUse($id)
173173
{
174174
$pi_groups = $this->pi_groupOU->getChildrenArray(true);
175175
foreach ($pi_groups as $pi_group) {

0 commit comments

Comments
 (0)