mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
Handle the filters on Identity/Gallery::list_users and Identity/Gallery::list_groups
This commit is contained in:
@@ -21,8 +21,8 @@ class Admin_Users_Controller extends Admin_Controller {
|
||||
public function index() {
|
||||
$view = new Admin_View("admin.html");
|
||||
$view->content = new View("admin_users.html");
|
||||
$view->content->users = user::users(array("orderby" => array("name")));
|
||||
$view->content->groups = group::groups(array("orderby" => array("name")));
|
||||
$view->content->users = user::users(array("orderby" => array("name" => "ASC")));
|
||||
$view->content->groups = group::groups(array("orderby" => array("name" => "ASC")));
|
||||
print $view;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user