missing sprintf around string
[squirrelmail.git] / themes / in_the_pink.php
index ec1f380b100acdd16b3fae708a89ce5c44ab8e1e..e58dab465fd2a70642be5d14b5a551b21c6f22ec 100755 (executable)
@@ -2,16 +2,18 @@
 
 /**
  * in_the_pink.php
- *    Name:    In the Pink
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: This theme generates random colors, featuring a reddish
- *             background with dark text.
+ * Name:    In the Pink
+ * @author Jorey Bump
+ * Date:    October 20, 2001
+ * Comment: This theme generates random colors, featuring a reddish
+ *          background with dark text.
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Copyright (c) 2000-2005 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 */
@@ -32,7 +34,7 @@ for ($i = 0; $i <= 15; $i++) {
     }
 
     /* 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);
 }
 
 
@@ -56,4 +58,4 @@ $color[14]  = '#xxxxxx';  // Color for quoted text -- >> 2 or more
 
 */
 
-?>
+?>
\ No newline at end of file