]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-unlock_surfbar_urls.php
New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / admin / what-unlock_surfbar_urls.php
index b65b1895f113548ce4259035f26f2534301f5a9b..56ac755543919ff0e02a9580a21cd5b9dec2da9c 100644 (file)
@@ -38,7 +38,7 @@
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } // END - if
 
@@ -79,9 +79,9 @@ if (SQL_NUMROWS($result) > 0) {
        while ($content = SQL_FETCHARRAY($result)) {
                // "Translate"/add content
                $content['sw']          = $SW;
-               $content['userid']      = ADMIN_USER_PROFILE_LINK($content['userid']);
+               $content['userid']      = generateUserProfileLink($content['userid']);
                $content['framekiller'] = FRAMETESTER($content['url']);
-               $content['registered']  = MAKE_DATETIME($content['registered'], 2);
+               $content['registered']  = generateDateTime($content['registered'], 2);
 
                // Load row template
                $OUT .= LOAD_TEMPLATE("admin_unlock_surfbar_urls_row", true, $content);