X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-wernis.php;h=8ef26d45756b3298190a6782fe188413233ad28f;hp=2086288fef4fe2da3e5118865ddf3acf0bd5ba4c;hb=cd7d344ea7007cfa20413acd3e03e50f0ab86d86;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341 diff --git a/inc/modules/member/what-wernis.php b/inc/modules/member/what-wernis.php index 2086288fef..8ef26d4575 100644 --- a/inc/modules/member/what-wernis.php +++ b/inc/modules/member/what-wernis.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -59,7 +59,7 @@ if ((getWernisApiId() == '') || (getWernisApiMd5() == '')) { } // END - if // Init the content array and points -$content = array(); $points = false; +$content = array(); $points = FALSE; // Is the mode set (withdraw or payout) if ((!isGetRequestElementSet('do')) || (getRequestElement('do') == 'choose')) { @@ -72,7 +72,7 @@ if ((!isGetRequestElementSet('do')) || (getRequestElement('do') == 'choose')) { setGetRequestElement('do', 'list'); // And load all rows! - $result = SQL_QUERY_ESC("SELECT `id`,`wernis_account`,`wernis_amount`,`wernis_timestamp`,`wernis_type` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s ORDER BY `wernis_timestamp` DESC", + $result = SQL_QUERY_ESC("SELECT `id`, `wernis_account`, `wernis_amount`, `wernis_timestamp`, `wernis_type` FROM `{?_MYSQL_PREFIX?}_user_wernis` WHERE `userid`=%s ORDER BY `wernis_timestamp` DESC", array(getMemberId()), __FILE__, __LINE__); // Load all rows @@ -87,7 +87,7 @@ if ((!isGetRequestElementSet('do')) || (getRequestElement('do') == 'choose')) { ); // Load row template - $content['rows'] .= loadTemplate('member_wernis_mode_list_row', true, $rowContent); + $content['rows'] .= loadTemplate('member_wernis_mode_list_row', TRUE, $rowContent); } // END - while // Free result @@ -173,7 +173,7 @@ if ((isFormSent()) && (isGetRequestElementSet('do'))) { } else { // All is fine here so do the withdraw $success = WERNIS_EXECUTE_WITHDRAW(postRequestElement('wernis_userid'), md5(postRequestElement('wds66_password')), postRequestElement('amount')); - if ($success === true) { + if ($success === TRUE) { // Add it to this amount initReferralSystem(); addPointsThroughReferralSystem('wernis_withdraw', getMemberId(), bigintval(postRequestElement('amount'))); @@ -205,7 +205,7 @@ if ((isFormSent()) && (isGetRequestElementSet('do'))) { } else { // All is fine here so do the withdraw $success = WERNIS_EXECUTE_PAYOUT(postRequestElement('wernis_userid'), postRequestElement('amount')); - if ($success === true) { + if ($success === TRUE) { // Sub points and ignore return status subtractPoints('wernis_payout', getMemberId(), postRequestElement('amount')); @@ -238,7 +238,7 @@ if ((isFormSent()) && (isGetRequestElementSet('do'))) { $mode = sprintf("member_wernis_mode_%s", getRequestElement('do')); // Load the template -loadTemplate($mode, false, $content); +loadTemplate($mode, FALSE, $content); // [EOF] ?>