We're living in 2004 now... perl is your friend for these kinds of things :)
[squirrelmail.git] / themes / spice_of_life_lite.php
index 4744f00dcf31ae994ad28b9078f15780d3c301ed..e3cea6742f0917e070114ae5a34a0dd432ded190 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-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 **/
@@ -41,7 +42,7 @@ for ($i = 0; $i <= 15; $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);
 }