LdapUserBackend: Fix sorting when sorting by user_name

refs #8826
This commit is contained in:
Johannes Meyer 2015-05-21 13:53:27 +02:00
parent 4d79731646
commit 10b158a182

View File

@ -57,8 +57,8 @@ class LdapUserBackend extends Repository implements UserBackendInterface
protected $sortRules = array( protected $sortRules = array(
'user_name' => array( 'user_name' => array(
'columns' => array( 'columns' => array(
'user_name asc', 'is_active desc',
'is_active desc' 'user_name'
) )
) )
); );