mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
Addressbook: Fix sort changes wouldn't stay in some circumstances
In particular, sorting by Name would always reset
This commit is contained in:
parent
0a95588642
commit
fac0457436
@ -2113,7 +2113,11 @@ class addressbook_ui extends addressbook_bo
|
|||||||
$rows['no_event_column'] = true;
|
$rows['no_event_column'] = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
$rows['order'] = $order;
|
// If we've changed the sort order on them, update the display
|
||||||
|
if($order !== $query['order'] )
|
||||||
|
{
|
||||||
|
$rows['order'] = $order;
|
||||||
|
}
|
||||||
$rows['call_popup'] = $this->config['call_popup'];
|
$rows['call_popup'] = $this->config['call_popup'];
|
||||||
$rows['customfields'] = array_values($this->customfields);
|
$rows['customfields'] = array_values($this->customfields);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user