X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-admins_edit.php;h=3831184cc64ca3494b6099dc4551aaae76171091;hb=c81e9ed85e01215e464d94446773bcd5e6699194;hp=798fe3f48f17a805f956c9e32cd4a9d2f79af2c9;hpb=ab6e23979a94ee3f68efca58da90137e88a95236;p=mailer.git diff --git a/inc/modules/admin/what-admins_edit.php b/inc/modules/admin/what-admins_edit.php index 798fe3f48f..3831184cc6 100644 --- a/inc/modules/admin/what-admins_edit.php +++ b/inc/modules/admin/what-admins_edit.php @@ -32,13 +32,13 @@ ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN())) -{ +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; require($INC); } + // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); // Instance for the cache extension global $cacheInstance; @@ -51,8 +51,9 @@ if (!empty($_GET['admin'])) { // Secure ID number $aid = bigintval($_GET['admin']); $_POST['edit'] = "1"; - $_POST['sel'][$aid] = array("1"); + $_POST['sel'][$aid] = "1"; } + if ((isset($_POST['edit'])) && (SELECTION_COUNT($_POST['sel']) > 0)) { // Edit account(s) ADMINS_EDIT_ADMIN_ACCOUNTS($_POST);