Summary | Sort LDAP users |
Queue | Horde Base |
Queue Version | 3.0.3-RC1 |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | Horde Developers (at) |
Requester | kevin_myer (at) iu13 (dot) org |
Created | 02/03/2005 (7454 days ago) |
Due | |
Updated | 02/04/2005 (7453 days ago) |
Assigned | 02/03/2005 (7454 days ago) |
Resolved | 02/04/2005 (7453 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
Type ⇒ Bug
State ⇒ Assigned
Priority ⇒ 2. Medium
Example:
Kronolith->My Calendars (choose a shared calendar).
Select Permissions. The Users drop-down is not sorted.
I am using LDAP for authentication and have the following set:
$conf['auth']['params']['uid'] = 'mail';
On this same share screen, I get the following error:
Notice: Undefined index: mail in
/horde-3.0testing/lib/Horde/Auth/ldap.php on line 328
Doesn't matter what attribute I use for uid.
State ⇒ Feedback
users not being sorted?
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Sort LDAP users
Queue ⇒ Horde Base
State ⇒ New
This is particularly useful when working with shares and permissions
in our organization (1400+ users). When the users aren't sorted
alphabetically, its difficult to quickly find them.
--- horde/lib/Horde/Auth/ldap.php 2005-02-03 09:03:27.000000000 -0500
+++ horde/lib/Horde/Auth/ldap.php 2005-02-03 10:43:32.000000000 -0500
@@ -327,6 +327,7 @@
for ($i = 0; $i < $entries['count']; $i++) {
$userlist[$i] = $entries[$i][$this->_params['uid']][0];
}
+ sort ( $userlist );
return $userlist;
}