Summary | Address book in free/busy not sorted |
Queue | Kronolith |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 2. Medium |
Owners | |
Requester | hackeron (at) gmail (dot) com |
Created | 01/30/2006 (7069 days ago) |
Due | |
Updated | 02/03/2006 (7065 days ago) |
Assigned | 02/02/2006 (7066 days ago) |
Resolved | 02/03/2006 (7065 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
bug in RC1 or I misconfigured something. Feel free to close bug as
invalid.
defaults sort like I would like them to.
(default is by family name).
// the format to display names. Either 'last_first' or 'first_last'
$_prefs['name_format'] = array(
'value' => 'first_last',
'locked' => false,
'shared' => false,
'type' => 'enum',
'desc' => _("Select the format used to display names:"),
'enum' => array('last_first' => _("\"Lastname, Firstname\" (ie.
Doe, John)"),
'first_last' => _("\"Firstname Lastname\" (ie.
John Doe)"),
'none' => _("no formatting"))
);
// user preferred sorting column
// zero based int representing the column number to sort by
$_prefs['sortby'] = array(
'value' => 1,
'locked' => false,
'shared' => false,
'type' => 'implicit'
);
// user preferred sorting direction
$_prefs['sortdir'] = array(
'value' => 0,
'locked' => false,
'shared' => false,
'type' => 'enum',
'enum' => array(0 => _("Ascending"),
1 => _("Descending")),
'desc' => _("Default sorting direction:")
);
State ⇒ Feedback
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Address book in free/busy not sorted
Queue ⇒ Kronolith
nicely sorted by name, if I view it from free/busy - the sorting is
lost and the person is practically impossible to find without typing
their name in search.