X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_payouts.php;h=289dd508ed21434102a41d411f20a049560107e3;hb=2142149f3f72f1a2476f95a87937c044d63bbaf2;hp=a4d1dc66bc80401040c21bfbf636cdc126ed89b8;hpb=ee524dd19c78e626a2f9ed3b952b2168e24252a6;p=mailer.git diff --git a/inc/modules/admin/what-list_payouts.php b/inc/modules/admin/what-list_payouts.php index a4d1dc66bc..289dd508ed 100644 --- a/inc/modules/admin/what-list_payouts.php +++ b/inc/modules/admin/what-list_payouts.php @@ -32,13 +32,13 @@ ************************************************************************/ // 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__); if (!empty($_GET['pid'])) { @@ -49,36 +49,30 @@ if (!empty($_GET['pid'])) SQL_FREERESULT($result); // Obtain some data - if (empty($_GET['task']) && (!empty($uid)) && ($uid > 0)) - { + if (empty($_GET['task']) && (!empty($uid)) && ($uid > 0)) { // Get task ID from database $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_task_system WHERE userid=%s AND task_type='PAYOUT_REQUEST' AND task_created='".$tstamp."' LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__); list($task) = SQL_FETCHROW($result); SQL_FREERESULT($result); - if (empty($task)) $task = "0"; - - } - elseif ((empty($uid)) || ($uid == "0")) - { + if (empty($task)) $task = 0; + } elseif ((empty($uid)) || ($uid == "0")) { // Cannot obtain member ID! LOAD_TEMPLATE("admin_settings_saved", false, PAYOUT_FAILED_OBTAIN_USERID); - } - else - { + } else { // Get task ID from URL $task = $_GET['task']; } - if ((!empty($task)) && (!empty($uid)) && ($uid > 0)) - { + + if ((!empty($task)) && (!empty($uid)) && ($uid > 0)) { // Load user's data - $result = SQL_QUERY_ESC("SELECT email, sex, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", + $result = SQL_QUERY_ESC("SELECT email, gender, surname, family FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1", array(bigintval($uid)), __FILE__, __LINE__); - list($email, $sex, $surname, $family) = SQL_FETCHROW($result); + list($email, $gender, $surname, $family) = SQL_FETCHROW($result); SQL_FREERESULT($result); // Konstante bauen - define('PAYOUT_USERDATA_VALUE', "".TRANSLATE_SEX($sex)." ".$surname." ".$family.""); + define('PAYOUT_USERDATA_VALUE', "".TRANSLATE_GENDER($gender)." ".$surname." ".$family.""); if (($_GET['do'] == "accept") && (!empty($email))) { @@ -249,17 +243,14 @@ ORDER BY p.payout_timestamp DESC", __FILE__, __LINE__); else { // Translate status - $evl = "\$status = PAYOUT_STATUS_".strtoupper($status).";"; - eval($evl); + $status = constant('PAYOUT_STATUS_'.strtoupper($status).''); $status = "".$status.""; } // Nothing entered must be secured in member/what-payputs.php ! - if ($allow == "Y") - { + if ($allow == "Y") { // Banner/Textlink views/clicks request - if (!empty($banner)) - { + if (!empty($banner)) { // Prepare array for the banner $content = array( 'banner' => $banner, @@ -269,9 +260,7 @@ ORDER BY p.payout_timestamp DESC", __FILE__, __LINE__); // Load template for the banner $account = LOAD_TEMPLATE("admin_list_payouts_banner", true, $content); - } - else - { + } else { // Textlink $content = array( 'txt_link' => $alt, @@ -282,9 +271,7 @@ ORDER BY p.payout_timestamp DESC", __FILE__, __LINE__); // Admins can addionally test the URL for framekillers $bank = "".CLICK_HERE.""; - } - else - { + } else { // e-currency payout request if (empty($account)) $account = "---"; if (empty($bank)) $bank = "---";