X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=c25d3ff01264e67dbaee3d7f580b973887f037f0;hb=34db702d004b245e5528b0ba20c6de441f61820a;hp=c999d578b8ce8403731407a24e2f1af9bee7b9d3;hpb=e5fe5afb17a5c8106f4c890234dfa39419e70f5d;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index c999d578b8..c25d3ff012 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,15 +47,9 @@ if (!defined('__SECURITY')) { // Add description as navigation point addMenuDescription('member', __FILE__); -// Load current referal clicks -if (!fetchUserData(getMemberId())) { - // Something really bad happened - debug_report_bug('No user account ' . getMemberId() . ' found.'); -} // END - if - // Prepare some data -$content['ref_clicks'] = getUserData('ref_clicks'); -$content['userid'] = getMemberId(); +$content['userid'] = getMemberId(); +$content['nickname_content'] = ''; // @TODO Move this into a filter if (isExtensionActive('nickname')) { @@ -74,11 +69,11 @@ $whereStatement = " WHERE `visible`='Y'"; if (isAdmin()) $whereStatement = ''; $result = SQL_QUERY("SELECT `id`, `url`, `alternate`, `counter`, `clicks` FROM `{?_MYSQL_PREFIX?}_refbanner`", __FILE__, __LINE__); -if (SQL_NUMROWS($result) > 0) { +if (!SQL_HASZERONUMS($result)) { // List available ref banners - $OUT = ''; $SW = 2; + $OUT = ''; while ($row = SQL_FETCHARRAY($result)) { - $test = str_replace(getConfig('URL'), getConfig('PATH'), $row['url']); $size = '0'; + $test = str_replace(getUrl(), getPath(), $row['url']); $size = '0'; if ($test == $row['url']) { // Download banner (I hope you keep the banner on same server???) $fp = sendGetRequest($row['url']); $bannerContent = ''; @@ -103,21 +98,17 @@ if (SQL_NUMROWS($result) > 0) { if ($size > 0) $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; // Add some more data - $row['sw'] = $SW; $row['userid'] = getMemberId(); // Add row $OUT .= loadTemplate('member_reflinks_row', true, $row); - - // Switchcolors - $SW = 3 - $SW; } // END - while // Load final template $content['refbanner_content'] = loadTemplate('member_reflinks_table', true, $OUT); } else { // No refbanner found! - $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, getMessage('MEMBER_NO_REFBANNER_FOUND')); + $content['refbanner_content'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_REFBANNER_FOUND--}'); } // Free result