]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_bonus.php
Fixes for ranking prices
[mailer.git] / inc / modules / admin / what-config_bonus.php
index b86ddc5ecc5eda426785e0f79748b73efdbab2d0..9e4641d08ba8d59214ea3212055bd3fc642960e0 100644 (file)
@@ -89,21 +89,29 @@ if (isset($_POST['ok']))
        define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX($_CONFIG['bonus_uid'], false, true, true, "bonus_uid"));
 
        // Initialize array for the points list
-       $RANKS = explode(";", $_CONFIG['bonus_ranks']);
+       //die("*".$_CONFIG['turbo_rates']."*");
+       $RANKS = explode(";", $_CONFIG['turbo_rates']);
 
        // Automatically calculate bonus points for ranks 2 and 3 when not set
        if (empty($_CONFIG['bonus_ranks'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4));
 
        // Generate list
        $OUT = "<OL start=\"2\">\n";
+       $cnt = 0;
        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";
                }
+               $cnt++;
        }
-       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";
+       // Maxmium entries
+       $max = 10;
+       if ($cnt >= 8) $max = $cnt+3;
+
+       // Add more empty fields
+       for ($i = $cnt; $i < $max; $i++) {
+               $OUT .= "  <LI><INPUT type=\"text\" name=\"rate[".($i+2)."]\" class=\"admin_normal\" size=\"4\" maxlength=\"7\">&nbsp;<FONT class=\"admin_notes\">(".POINTS.")</FONT?</LI>\n";
        }
        $OUT .= "</OL>\n";
        define('__TRATES_LIST', $OUT);