X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-reflist.php;h=3853872b01a1cd6efb803653af618e16eb9fbcf8;hp=7542489428338d5b249200391af7d54f57022dd9;hb=a18efdcd57ba91893f0958a457b5c58639b135c3;hpb=d4dd489111b2da4cbf37d1584c591d1bdbc1c518 diff --git a/inc/modules/member/what-reflist.php b/inc/modules/member/what-reflist.php index 7542489428..3853872b01 100644 --- a/inc/modules/member/what-reflist.php +++ b/inc/modules/member/what-reflist.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -46,7 +46,7 @@ if (!defined('__SECURITY')) { // Add description as navigation point addYouAreHereLink('member', __FILE__); -// Load all referal levels +// Load all referral levels $result = SQL_QUERY('SELECT `level`,`percents` FROM @@ -66,12 +66,12 @@ if (!SQL_HASZERONUMS($result)) { $counter = '0'; // Check for users ref in this level - foreach (getUserReferalPoints(getMemberId(), $content['level']) as $refRow) { + foreach (getUserReferralPoints(getMemberId(), $content['level']) as $refRow) { // Add/"translate" more content $refRow['click_rate'] = translateComma($refRow['click_rate'], true, 1); // Load row template - $rows .= loadTemplate('member_list_referal_row', true, $refRow); + $rows .= loadTemplate('member_list_referral_row', true, $refRow); // Count this ref and switch color $counter++; @@ -83,11 +83,11 @@ if (!SQL_HASZERONUMS($result)) { $content['rows'] = $rows; // Load level template - $OUT .= loadTemplate('member_list_referal_level', true, $content); + $OUT .= loadTemplate('member_list_referral_level', true, $content); } // END - while // Load main template - loadTemplate('member_list_referal', false, $OUT); + loadTemplate('member_list_referral', false, $OUT); } else { // No entries displayMessage('{--MEMBER_REFBACK_NO_ENTRIES--}');