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'];
|