X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-unlock_sponsor.php;h=0aaba4551f2699f43b469ed3efe16bacfb73b9a8;hb=2142149f3f72f1a2476f95a87937c044d63bbaf2;hp=c3894d99a6da88f5d699ff12edadf32396be9716;hpb=7c92b706722b1bd4c8af68b213b65c1bf8e68eee;p=mailer.git diff --git a/inc/modules/admin/what-unlock_sponsor.php b/inc/modules/admin/what-unlock_sponsor.php index c3894d99a6..0aaba4551f 100644 --- a/inc/modules/admin/what-unlock_sponsor.php +++ b/inc/modules/admin/what-unlock_sponsor.php @@ -15,19 +15,30 @@ * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * - * This program is free software. You can redistribute it and/or modify * + * 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 * - * the Free Software Foundation; either version 2 of the License. * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the Free Software * + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, * + * MA 02110-1301 USA * ************************************************************************/ // Some security stuff... -if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!is_admin())) { +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); // Check if admin has submitted form if (isset($_POST['ok'])) { @@ -66,13 +77,7 @@ ORDER BY sp.pay_name", $aid = SPONSOR_NO_ADMIN; } else { // Load admin's email address for contact - $result_aid = SQL_QUERY_ESC("SELECT email FROM "._MYSQL_PREFIX."_admins WHERE id='%s' LIMIT 1", - array(bigintval($aid)), __FILE__, __LINE__); - list($aid) = SQL_FETCHROW($result_aid); - SQL_FREERESULT($result_aid); - - // Check if admin login is still in db - if (empty($aid)) $aid = ADMIN_NOT_FOUND; + $aid = GET_ADMIN_EMAIL(GET_ADMIN_LOGIN(($aid)); } // Transfer data to array @@ -103,17 +108,17 @@ ORDER BY sp.pay_name", WHERE id='%s' AND status='PENDING' LIMIT 1", array($id), __FILE__, __LINE__); - // Update, if applyable, referral count and points + // Update, if applyable, referal count and points if (($refid > 0) && ($refid != $id)) { - // Update referral account + // Update referal account $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_amount=points_amount+%s, ref_count=ref_count+1 WHERE id='%s' LIMIT 1", - array($CONFIG['sponsor_ref_points'], bigintval($refid)), __FILE__, __LINE__); + array($_CONFIG['sponsor_ref_points'], bigintval($refid)), __FILE__, __LINE__); // Whas that update fine? if (SQL_AFFECTEDROWS() == 1) { - // Load referral's data + // Load referal's data $result = SQL_QUERY_ESC("SELECT id, gender, surname, family, email, (points_amount - points_used) AS points, receive_warnings, ref_count AS refs FROM "._MYSQL_PREFIX."_sponsor_data @@ -125,10 +130,10 @@ WHERE id='%s' LIMIT 1", if ($REFERRAL['receive_warnings'] == "Y") { // Translate some data $REFERRAL['points'] = TRANSLATE_COMMA($REFERRAL['points']); - $REFERRAL['ref_points'] = TRANSLATE_COMMA($CONFIG['sponsor_ref_points']); + $REFERRAL['ref_points'] = TRANSLATE_COMMA($_CONFIG['sponsor_ref_points']); $REFERRAL['gender'] = TRANSLATE_GENDER($REFERRAL['gender']); - // Send notification to referral + // Send notification to referal $REF_MSG = LOAD_EMAIL_TEMPLATE("sponsor_ref_notify", $REFERRAL); SEND_EMAIL($REFERRAL['email'], SPONSOR_REF_NOTIFY_SUBJ, $REF_MSG); } @@ -155,7 +160,7 @@ WHERE id='%s' LIMIT 1", } // Add seperator - OUTPUT_HTML("
"); + OUTPUT_HTML("
"); } // Begin listing of all pending sponsor accounts