]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_surfbar_urls.php
Missing theme extension fixed in theme_edit/theme_import
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
index b11221535c49a12087423224b6688fd8b701fcae..e6ea703afce88cc908e5693ff0c8ea421555a3a3 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!is_admin())) {
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 } // END - if
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 // Is the form sent?
 if ((isset($_POST['unlock'])) && (is_array($_POST['id'])) && (count($_POST['id']) > 0)) {
@@ -73,10 +73,10 @@ if (SQL_NUMROWS($result) > 0) {
        $OUT = ""; $SW = 2;
        while ($content = SQL_FETCHARRAY($result)) {
                // "Translate"/add content
-               $content['sw']         = $SW;
-               $content['userid']     = ADMIN_USER_PROFILE_LINK($content['userid']);
-               $content['url']        = FRAMETESTER($content['url']);
-               $content['registered'] = MAKE_DATETIME($content['registered'], 2);
+               $content['sw']          = $SW;
+               $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
+               $content['framekiller'] = FRAMETESTER($content['url']);
+               $content['registered']  = MAKE_DATETIME($content['registered'], 2);
 
                // Load row template
                $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);