]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-reflinks.php
More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / modules / member / what-reflinks.php
index 751ff784dfb499c9628758be4c2550b3816a4440..375e1f66a4938f2f0714b1f9ba28e261f4d32406 100644 (file)
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       $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);
 } elseif (!IS_MEMBER()) {
-       LOAD_URL('modules.php?module=index');
+       redirectToUrl('modules.php?module=index');
 }
 
 // Add description as navigation point
@@ -49,7 +49,7 @@ ADD_DESCR('member', __FILE__);
 
 // Load current referal clicks
 $result = SQL_QUERY_ESC("SELECT ref_clicks FROM `{!_MYSQL_PREFIX!}_user_data` WHERE userid=%s LIMIT 1",
-       array(getUserId()), __FILE__, __LINE__);
+array(getUserId()), __FILE__, __LINE__);
 list($c) = SQL_FETCHROW($result);
 SQL_FREERESULT($result);
 
@@ -86,8 +86,8 @@ 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 = '';
-                       if ((!empty($fp)) && (is_array($fp)) && (count($fp) > 0) {
+                       $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
                                foreach ($fp as $f) {
@@ -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