From 348a566f894d568d8ce9d1b58ffe6ce03cfb7e65 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 21 Oct 2015 18:05:03 -0700 Subject: [PATCH] More responsive fixes --- app/controllers/admin/UsersController.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/controllers/admin/UsersController.php b/app/controllers/admin/UsersController.php index 6bdc2118c339..2b0668e77b20 100755 --- a/app/controllers/admin/UsersController.php +++ b/app/controllers/admin/UsersController.php @@ -904,7 +904,10 @@ public function getDatatable($status = null) $rows[] = array( 'checkbox' =>'', 'name' => ''.$user->fullName().'', - 'email' => ($user->email!='') ? ' ' : '', + 'email' => ($user->email!='') ? + '' + .'' + .'' : '', 'username' => $user->username, 'location' => ($user->location_id!='') ? $user->userloc->name : '', 'manager' => ($user->manager) ? '' . $user->manager->fullName() . '' : '',