diff --git a/e107_admin/users.php b/e107_admin/users.php index f47cb4449..986e0e6af 100644 --- a/e107_admin/users.php +++ b/e107_admin/users.php @@ -1991,7 +1991,7 @@ class users_admin_form_ui extends e_admin_form_ui extract($row); $text = ""; - $text .= "
+ $head = "
@@ -2053,14 +2053,17 @@ class users_admin_form_ui extends e_admin_form_ui } elseif ($user_id != USERID || getperms("0")) { - $text .= "\n"; + // $text .= "\n"; // DEPRECATED. inline & batch should be enough. } if ($user_perms != "0") { $text .= "\n"; } - $text .= "
"; - return $text; + + $foot = "
"; + + + return ($text) ? $head.$text.$foot : ""; }