DbUserBackend: Use is_active as well as a default sort column
refs #8826
This commit is contained in:
parent
9163fb0f0f
commit
b86a0024c3
|
@ -46,7 +46,10 @@ class DbUserBackend extends DbRepository implements UserBackendInterface
|
|||
*/
|
||||
protected $sortRules = array(
|
||||
'user_name' => array(
|
||||
'order' => 'asc'
|
||||
'columns' => array(
|
||||
'user_name asc',
|
||||
'is_active desc'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue