From d40cf7bd0f1cece88b330e84a667172dd6dff3be Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 16 Mar 2019 03:17:59 -0600 Subject: [PATCH] Update users.php --- core/users/users.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/core/users/users.php b/core/users/users.php index dd25336b70..45b0ae0bc2 100644 --- a/core/users/users.php +++ b/core/users/users.php @@ -174,6 +174,9 @@ echo th_order_by('groups', $text['label-groups'], $order_by, $order, '', '', $param); echo th_order_by('contact_organization', $text['label-organization'], $order_by, $order, '', '', $param); echo th_order_by('contact_name_given', $text['label-name'], $order_by, $order, '', '', $param); + if (permission_exists('ticket_edit')) { + echo "".$text['label-tools']."\n"; + } echo th_order_by('user_enabled', $text['label-enabled'], $order_by, $order, '', '', $param); echo ""; if (permission_exists('user_add')) { @@ -206,8 +209,13 @@ echo " ".$row['groups']." \n"; echo " \n"; - echo "".$row['contact_organization']."  \n"; - echo "".$row['contact_name_given']." ".$row['contact_name_family']."  \n"; + echo " ".$row['contact_organization']."  \n"; + echo " ".$row['contact_name_given']." ".$row['contact_name_family']."  \n"; + echo " \n"; + if (permission_exists('ticket_edit')) { + echo " \n"; + } + echo " \n"; echo " "; if ($row['user_enabled'] == 'true') { echo $text['option-true'];