diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-05-26 01:53:18 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-05-26 01:53:18 +0000 |
commit | 916405bc4b572ded4b60a2a2eaececb8402dba0a (patch) | |
tree | 73ac043aa5dc45086c22844f9288e702e51a64e9 /modules/user/controllers/admin_users.php | |
parent | 30592cabd2bf062355b88283d5282c296b44c15c (diff) |
White space fixes
Diffstat (limited to 'modules/user/controllers/admin_users.php')
-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 d352d441..ac17c577 100644 --- a/modules/user/controllers/admin_users.php +++ b/modules/user/controllers/admin_users.php @@ -22,7 +22,7 @@ class Admin_Users_Controller extends Controller { $view = new Admin_View("admin.html"); $view->content = new View("admin_users.html"); $view->content->users = ORM::factory("user")->orderby("name")->find_all(); - $view->content->groups = ORM::factory("group")->orderby("name")->find_all(); + $view->content->groups = ORM::factory("group")->orderby("name")->find_all(); print $view; } @@ -216,7 +216,7 @@ class Admin_Users_Controller extends Controller { } $form = group::get_delete_form_admin($group); - if($form->validate()) { + if ($form->validate()) { $name = $group->name; $group->delete(); } else { |