X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Frefback_functions.php;h=fe4ef4adcf6ba0bd86a2b1beaced2e9b53feb587;hb=ca11996eb52fa0a1ec45d6ab10f5331c4a54a116;hp=300ee3aacdfc7eb13745a1d3165566d6816e0a09;hpb=486544503c2e517dc5c399308fdf43c8e35ff102;p=mailer.git diff --git a/inc/libs/refback_functions.php b/inc/libs/refback_functions.php index 300ee3aacd..fe4ef4adcf 100644 --- a/inc/libs/refback_functions.php +++ b/inc/libs/refback_functions.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -98,7 +98,7 @@ LIMIT 1', // Something must have been updated if (SQL_HASZEROAFFECTED()) { // Please report this bug - debug_report_bug(__FUNCTION__, __LINE__, 'Nothing has been updated in user_refs,userid=' . $userid . ',refid=' . convertNullToZero($refid) . ',refbackPoints=' . $refbackPoints); + reportBug(__FUNCTION__, __LINE__, 'Nothing has been updated in user_refs,userid=' . $userid . ',refid=' . convertNullToZero($refid) . ',refbackPoints=' . $refbackPoints); } // END - if // Add points again, but only directly @@ -138,7 +138,7 @@ function getRefbackPercents ($userid, $refid) { //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',refid=' . $refid . ' - ENTERED!'); if ((!isValidUserId($userid)) || (!isValidUserId($refid))) { // userid and/or refid is invalid - debug_report_bug(__FUNCTION__, __LINE__, 'userid=' . convertNullToZero($userid) . ', refid=' . convertNullToZero($refid) . ' - Both must be > 0'); + reportBug(__FUNCTION__, __LINE__, 'userid=' . convertNullToZero($userid) . ', refid=' . convertNullToZero($refid) . ' - Both must be > 0'); } elseif ($userid == $refid) { // Skip identical ids return 0; @@ -160,7 +160,7 @@ function getRefbackPercents ($userid, $refid) { //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'userid=' . $userid . ',refid=' . $refid . ',percents=' . $GLOBALS['refback_percents'][$userid][$refid]); } else { // Please report all findings - debug_report_bug(__FUNCTION__, __LINE__, 'userid=' . $userid . ',refid=' . $refid . ' - No entry found. :-('); + reportBug(__FUNCTION__, __LINE__, 'userid=' . $userid . ',refid=' . $refid . ' - No entry found. :-('); } // Free result @@ -196,7 +196,7 @@ ORDER BY // Add all while ($content = SQL_FETCHARRAY($result)) { //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'refid=' . convertNullToZero($refid) . ',level=' . $level . ',userid=' . $content['userid']); - $userIds[] = $content['userid']; + array_push($userIds, $content['userid']); } // END - while } // END - if @@ -342,7 +342,7 @@ function updateMemberRefbackPercents ($id, $percents, $note) { // Prepare email content $content['refback_percents'] = $percents; - $content['refback_note'] = $note; + $content['refback_notice'] = $note; // Load member email template $mail = loadEmailTemplate('member_refback', $content, $content['refid']); @@ -361,7 +361,7 @@ function updateMemberRefbackPercents ($id, $percents, $note) { return $status; } -// Checks wether refback is enabled +// Checks whether refback is enabled function isRefbackEnabled () { // Do we have cache? if (!isset($GLOBALS[__FUNCTION__])) {