*** empty log message ***
This commit is contained in:
parent
79771dfd4d
commit
84d812e73d
|
@ -439,7 +439,8 @@ function getgid($groupname) { // Will return the the gid to an existing Groupnam
|
|||
$result = ldap_search($_SESSION['ldap']->server(), $_SESSION['config']->get_GroupSuffix(), 'cn=' . $groupname, array('gidNumber'), 0);
|
||||
$entry = ldap_first_entry($_SESSION['ldap']->server(), $result);
|
||||
$attr = ldap_get_attributes($_SESSION['ldap']->server(), $entry);
|
||||
return $attr['gidNumber'][0];
|
||||
if ($attr['gidNumber'][0]) return $attr['gidNumber'][0];
|
||||
else return -1;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -258,8 +258,6 @@ echo '</title>
|
|||
echo '<table rules="all" class="account" width="100%">
|
||||
<tr><td></td></tr>';
|
||||
|
||||
print_r($_SESSION['account']);
|
||||
|
||||
|
||||
if (!$select_local) $select_local='general';
|
||||
if ($_POST['createagain']) {
|
||||
|
|
Loading…
Reference in New Issue