]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_edit.php
- Surfbar further extended, currently broken!
[mailer.git] / inc / modules / admin / what-admins_edit.php
index 798fe3f48f17a805f956c9e32cd4a9d2f79af2c9..e4aaee886fb1e0c1709d4daa152aa50ae7ae65da 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__));
 
@@ -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);