X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=375e1f66a4938f2f0714b1f9ba28e261f4d32406;hb=a14286dbeccc671261191608fbab164d0f35c507;hp=69172291568c4be0907e05b4e8456ff7855c4ce9;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index 6917229156..375e1f66a4 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -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 @@ -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