mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
Whitespace.
This commit is contained in:
@@ -21,12 +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 = ORM::factory("user")
|
||||
->order_by("name", "ASC")
|
||||
->find_all();
|
||||
$view->content->groups = ORM::factory("group")
|
||||
->order_by("name", "ASC")
|
||||
->find_all();
|
||||
$view->content->users = ORM::factory("user")->order_by("name", "ASC")->find_all();
|
||||
$view->content->groups = ORM::factory("group")->order_by("name", "ASC")->find_all();
|
||||
print $view;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user