New naming convention applied to many functions, see #118 for details
[mailer.git] / inc / modules / member / what-reflinks.php
index 69172291568c4be0907e05b4e8456ff7855c4ce9..64e00bf64faa9d6cf29f07e77f6e5719695da347 100644 (file)
@@ -41,7 +41,7 @@ if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 } elseif (!IS_MEMBER()) {
-       LOAD_URL('modules.php?module=index');
+       redirectToUrl('modules.php?module=index');
 }
 
 // Add description as navigation point
@@ -86,7 +86,7 @@ if (SQL_NUMROWS($result) > 0) {
                $test = str_replace(constant('URL'), constant('PATH'), $content['url']); $size = 0;
                if ($test == $content['url']) {
                        // Download banner (I hope you keep the banner on same server???)
-                       $fp = GET_URL($content['url']); $bannerContent = '';
+                       $fp = sendGetRequest($content['url']); $bannerContent = '';
                        if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0) {
                                // Loads only found banner, when there is a 404 error this foreach() command
                                // will cause an "Invalid argument supplied for foreach()" error
@@ -95,11 +95,11 @@ if (SQL_NUMROWS($result) > 0) {
                                }
                        }
                        $size = strlen($bannerContent);
-               } elseif (FILE_READABLE($test)) {
+               } elseif (isFileReadable($test)) {
                        $size = filesize($test);
                }
 
-               if ($size > 0) $content['alternate'] .= " (".TRANSLATE_COMMA(round($size/102.4)/10)." {--KBYTES--})";
+               if ($size > 0) $content['alternate'] .= " (".translateComma(round($size/102.4)/10)." {--KBYTES--})";
 
                // Load banner data
                // @TODO Rewritings: alt->alternate,cnt->counter,cks->clicks,uid->userid in template