diff --git a/core/users/users.php b/core/users/users.php
index 45b0ae0bc2..2571425e3e 100644
--- a/core/users/users.php
+++ b/core/users/users.php
@@ -177,6 +177,9 @@
if (permission_exists('ticket_edit')) {
echo "
".$text['label-tools']." | \n";
}
+ else {
+ echo " | \n";
+ }
echo th_order_by('user_enabled', $text['label-enabled'], $order_by, $order, '', '', $param);
echo "";
if (permission_exists('user_add')) {
@@ -211,6 +214,7 @@
echo " | ".$row['contact_organization']." | \n";
echo " ".$row['contact_name_given']." ".$row['contact_name_family']." | \n";
+
echo " \n";
if (permission_exists('ticket_edit')) {
echo " \n";
|