]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_edit.php
Missing theme extension fixed in theme_edit/theme_import
[mailer.git] / inc / modules / admin / what-admins_edit.php
index 7bf777273ab540d1766c7bd618635da8a2560568..3831184cc64ca3494b6099dc4551aaae76171091 100644 (file)
  ************************************************************************/
 
 // 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 $CACHE;
+global $cacheInstance;
 
 // Set selection data to empty array when it is empty
 if (empty($_POST['sel'])) $_POST['sel'] = array();
@@ -51,12 +51,12 @@ 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_ACCOUNTS($_POST);
+       ADMINS_EDIT_ADMIN_ACCOUNTS($_POST);
 } elseif ((isset($_POST['change'])) && (sizeof($_POST['login']) > 0)) {
        // Change admin accounts
        ADMINS_CHANGE_ADMIN_ACCOUNT($_POST);