Fix two typos "squirrelmai" -> "squirrelmail". Sheesh.
[squirrelmail.git] / themes / spice_of_life_lite.php
index 7dce0cd422df74325ca4b82f79b0060f124b1ae5..2de9709992b9841c7d3ed76ac7de59df27295706 100755 (executable)
@@ -1,17 +1,18 @@
 <?php
 
 /**
- * spice_of_life_lite.php
- *    Name:    Spice of Life - Lite
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: This theme generates random colors, featuring a
- *             lite background with dark text.
+ * Name:   Spice of Life - Lite
+ * @author Jorey Bump
+ * Date:   October 20, 2001
+ * Comment This theme generates random colors, featuring a
+ *         lite background with dark text.
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Copyright (c) 2000-2003 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 **/
@@ -23,7 +24,7 @@ $bg = mt_rand(0,1);
 /** range delimiter **/
 $bgrd = $bg * 128;
 
-for ($i = 0; $i <= 14; $i++) {
+for ($i = 0; $i <= 15; $i++) {
     /** background/foreground toggle **/
     if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
         /** background **/
@@ -41,7 +42,7 @@ for ($i = 0; $i <= 14; $i++) {
     $b = mt_rand($cmin,$cmax);
 
     /** set array element as hex string with hashmark (for HTML output) **/
-    $color[$i] = sprintf("#%02X%02X%02X",$r,$g,$b);
+    $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b);
 }