X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_doubler.php;h=29106591f013828f154be039c86d08990d49fa25;hp=4bcb982a760b9b4f8cddbf371b2501a7fb179445;hb=49acdb7a7adbcf25a8e8683b5581bfcec72b23bd;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341 diff --git a/inc/modules/admin/what-list_doubler.php b/inc/modules/admin/what-list_doubler.php index 4bcb982a76..29106591f0 100644 --- a/inc/modules/admin/what-list_doubler.php +++ b/inc/modules/admin/what-list_doubler.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2015 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -71,7 +71,7 @@ switch (getRequestElement('do')) { $sumAlready = '0'; $sumWaiting = '0'; // Number of direct already payouts and referral - $count = countSumTotalData('Y','doubler','id','completed',true, " AND `is_ref`='N'"); + $count = countSumTotalData('Y', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='N'"); if ($count > 0) { // Something was payed out @@ -79,7 +79,7 @@ switch (getRequestElement('do')) { $content['already_direct_link'] = '' . $count . ''; } // END - if - $count = countSumTotalData('Y','doubler','id','completed',true, " AND `is_ref`='Y'"); + $count = countSumTotalData('Y', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='Y'"); if ($count > 0) { // Something was payed out @@ -88,7 +88,7 @@ switch (getRequestElement('do')) { } // END - if // And the same for waiting pouts (direct and referral) - $count = countSumTotalData('N','doubler','id','completed',true, " AND `is_ref`='N'"); + $count = countSumTotalData('N', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='N'"); if ($count > 0) { // Something was payed out @@ -96,7 +96,7 @@ switch (getRequestElement('do')) { $content['waiting_direct_link'] = '' . $count . ''; } // END - if - $count = countSumTotalData('N','doubler','id','completed',true, " AND `is_ref`='Y'"); + $count = countSumTotalData('N', 'doubler', 'id', 'completed', TRUE, " AND `is_ref`='Y'"); if ($count > 0) { // Something was payed out @@ -113,7 +113,7 @@ switch (getRequestElement('do')) { } // END - switch // Load mode template -loadTemplate('admin_list_doubler_' . getRequestElement('do'), false, $content); +loadTemplate('admin_list_doubler_' . getRequestElement('do'), FALSE, $content); // [EOF] ?>