Make our Date header RFC-compliant. Redundant timezone info does not comply with...
[squirrelmail.git] / themes / monostochastic.php
index 952ea41c19a68abe1233b8085b0ea434e57eebd7..fd7f18202ec36b862101585580b3d0c3386be58a 100755 (executable)
@@ -20,12 +20,6 @@ if (isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE_
     die();
 }
 
-/** load sq_mt_randomize() */
-include_once(SM_PATH . 'functions/strings.php');
-
-/** seed the random number generator */
-sq_mt_randomize();
-
 /** light(1) or dark(0) background toggle **/
 $bg = mt_rand(0,1);
 
@@ -51,8 +45,8 @@ $gt = mt_rand($cmin_t,$cmax_t);
 $bt = mt_rand($cmin_t,$cmax_t);
 
 /** set array element as hex string with hashmark (for HTML output) **/
-for ($i = 0; $i <= 15; $i++) {
-    if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
+for ($i = 0; $i <= 16; $i++) {
+    if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12 or $i == 16) {
         $color[$i] = sprintf('#%02X%02X%02X',$rb,$gb,$bb);
     } else {
         $color[$i] = sprintf('#%02X%02X%02X',$rt,$gt,$bt);