removed language codes from conf.pl. List is too big.
[squirrelmail.git] / themes / spice_of_life.php
index 95373d7bc2fabee77dcc9840c4fbf41649192c86..f9e20f5ecba7e28f38c82a9c441d0643ef1d789d 100755 (executable)
@@ -1,17 +1,18 @@
 <?php
 
 /**
- * spice_of_life.php
- *    Name:    Spice of Life
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: Generates random colors for each frame,
- *             featuring either a dark or light background.
+ * Name:   Spice of Life
+ * @author Jorey Bump
+ * Date:   October 20, 2001
+ * Comment Generates random colors for each frame,
+ *         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 **/
@@ -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);
 }