]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_bonus.php
Obsoleted parameters to SQL_AFFECTED_ROWS() removed, OPEN_TABLE() and CLOSE_TABLE...
[mailer.git] / inc / modules / admin / what-config_bonus.php
index cb432f2812f883f4f9ced2247e8cca1b526b76b6..c07251b6dcc45229002b15d0b3007cdda70b3707 100644 (file)
@@ -71,13 +71,10 @@ if (isset($_POST['ok']))
        $_CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify'];
 
        // Include sending out mails
-       if ((($_CONFIG['bonus_active'] == "Y") && ($_CONFIG['bonus_en_notify'] == "Y")) || (($_CONFIG['bonus_active'] == "N") && ($_CONFIG['bonus_di_notify'] == "Y")))
-       {
+       if ((($_CONFIG['bonus_active'] == "Y") && ($_CONFIG['bonus_en_notify'] == "Y")) || (($_CONFIG['bonus_active'] == "N") && ($_CONFIG['bonus_di_notify'] == "Y"))) {
                include(PATH."inc/mails/bonus_mails.php");
        }
-}
- else
-{
+} else {
        // Prepare contants for the template
        define('__LOGIN_VALUE' , TRANSLATE_COMMA($_CONFIG['login_bonus']        , false));
        define('__TURBO_VALUE' , TRANSLATE_COMMA($_CONFIG['turbo_bonus']        , false));
@@ -89,7 +86,7 @@ if (isset($_POST['ok']))
        define('__TLINES_VALUE', $_CONFIG['bonus_lines']);
 
        // Transfer options to template __MEMBER_SELECTION
-       ADD_MEMBER_SELECTION_BOX(false, true, true, $_CONFIG['bonus_uid']);
+       ADD_MEMBER_SELECTION_BOX($_CONFIG['bonus_uid'], false, true, true);
 
        // Initialize array for the points list
        $RANKS = explode(";", $_CONFIG['bonus_rates']);
@@ -99,16 +96,13 @@ if (isset($_POST['ok']))
 
        // Generate list
        $OUT = "<OL start=\"2\">\n";
-       foreach ($RANKS as $k=>$rate)
-       {
-               if (!empty($rate))
-               {
+       foreach ($RANKS as $k=>$rate) {
+               if (!empty($rate))      {
                        // Print only when something is in
                        $OUT .= "  <LI><INPUT type=\"text\" name=\"rate[".($k + 2)."]\" class=\"admin_normal\" size=\"4\" maxlength=\"7\" value=\"".$rate."\">&nbsp;<FONT class=\"admin_notes\">(".POINTS.")</FONT?</LI>\n";
                }
        }
-       for ($i = 3; $i < 8; $i++)
-       {
+       for ($i = 3; $i < 8; $i++) {
                $OUT .= "  <LI><INPUT type=\"text\" name=\"rate[".($k + $i)."]\" class=\"admin_normal\" size=\"4\" maxlength=\"7\">&nbsp;<FONT class=\"admin_notes\">(".POINTS.")</FONT?</LI>\n";
        }
        $OUT .= "</OL>\n";