Style fixes.

This commit is contained in:
Bharat Mediratta
2011-01-15 15:10:27 -08:00
parent f0dd16efc4
commit 8583c1d259

View File

@@ -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;