using case insensitive lookups that don't depend on sql server string comparison...
[squirrelmail.git] / themes / monostochastic.php
index c8881fbb6ace535cfca5285670509172202cef4c..eee68b2835ec8a189c3e7dfcede52c0a65a537a8 100755 (executable)
@@ -2,19 +2,21 @@
 
 /**
  * monostochastic.php
- *    Name:    Monostochastic
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: Generates random two-color frames, featuring either
- *             a dark or light background.
+ * Name:    Monostochastic
+ * @author Jorey Bump
+ * Date:    October 20, 2001
+ * Comment: Generates random two-color frames, featuring either
+ *          a dark or light background.
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Copyright (c) 2000-2004 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * $Id$
+ * @package squirrelmail
+ * @subpackage themes
  */
 
-/* seed the random number generator */
+/** seed the random number generator */
 sq_mt_randomize();
 
 /** light(1) or dark(0) background toggle **/
@@ -42,11 +44,11 @@ $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 <= 14; $i++) {
+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) {
-        $color[$i] = sprintf("#%02X%02X%02X",$rb,$gb,$bb);
+        $color[$i] = sprintf('#%02X%02X%02X',$rb,$gb,$bb);
     } else {
-        $color[$i] = sprintf("#%02X%02X%02X",$rt,$gt,$bt);
+        $color[$i] = sprintf('#%02X%02X%02X',$rt,$gt,$bt);
     }
 }