diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-15 15:10:27 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-15 15:10:27 -0800 |
commit | 8583c1d259e33ab8c85ade70ee521bb21452cff5 (patch) | |
tree | dd74aa01078f87d84a0f82870f44b3f82604a28d | |
parent | f0dd16efc428d372cca6ec90ca31251e3ce24382 (diff) |
Style fixes.
-rw-r--r-- | modules/user/controllers/admin_users.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/controllers/admin_users.php b/modules/user/controllers/admin_users.php index 8dbc4cbb..9ef6f8c1 100644 --- a/modules/user/controllers/admin_users.php +++ b/modules/user/controllers/admin_users.php @@ -46,8 +46,8 @@ class Admin_Users_Controller extends Admin_Controller { // Join our users against the items table so that we can get a count of their items // in the same query. $view->content->users = ORM::factory("user") - ->order_by("users.name", "ASC") - ->find_all($page_size, $view->content->pager->sql_offset); + ->order_by("users.name", "ASC") + ->find_all($page_size, $view->content->pager->sql_offset); $view->content->groups = ORM::factory("group")->order_by("name", "ASC")->find_all(); print $view; |