mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-31 16:59:22 -04:00
ORM::orderby -> ORM::order_by
This commit is contained in:
@@ -22,10 +22,10 @@ class Admin_Users_Controller extends Admin_Controller {
|
||||
$view = new Admin_View("admin.html");
|
||||
$view->content = new View("admin_users.html");
|
||||
$view->content->users = ORM::factory("user")
|
||||
->orderby("name", "ASC")
|
||||
->order_by("name", "ASC")
|
||||
->find_all();
|
||||
$view->content->groups = ORM::factory("group")
|
||||
->orderby("name", "ASC")
|
||||
->order_by("name", "ASC")
|
||||
->find_all();
|
||||
print $view;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user