]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-wernis.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / member / what-wernis.php
index 7d3929862e9cac034bf0360379eb108ca25c5e9b..8ef26d45756b3298190a6782fe188413233ad28f 100644 (file)
@@ -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')) {
@@ -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]
 ?>