]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-wernis.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / member / what-wernis.php
index 7d3929862e9cac034bf0360379eb108ca25c5e9b..3ef916ab8c84d5b95e07393caf627dd20cf4d524 100644 (file)
@@ -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]
 ?>