X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflinks.php;h=c1a5a1794b818f27f4466aefc46ed3a9250448f4;hb=4b93525eb57c07b89c127494a45ec3d5666fa71a;hp=d4838a47fd337ad03c0977a2b25151d1f64abf0d;hpb=9f6c30cc0e06098171d773d671292081ecee3d29;p=mailer.git diff --git a/inc/modules/member/what-reflinks.php b/inc/modules/member/what-reflinks.php index d4838a47fd..c1a5a1794b 100644 --- a/inc/modules/member/what-reflinks.php +++ b/inc/modules/member/what-reflinks.php @@ -1,7 +1,7 @@ 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 = ''; @@ -100,24 +93,22 @@ if (SQL_NUMROWS($result) > 0) { $row['alternate'] = '{?MAIN_TITLE?} - {?SLOGAN?}'; } // END - if - if ($size > 0) $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + if ($size > 0) { + $row['alternate'] .= ' (' .translateComma(round($size / 102.4) / 10) . ' {--KBYTES--})'; + } // END - if // Add some more data - $row['sw'] = $SW; - $row['userid'] = getUserId(); + $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')); + // No refbanner found + $content['refbanner_content'] = displayMessage('{--MEMBER_NO_REFBANNER_FOUND--}', true); } // Free result