minor grammar tweaks
[squirrelmail.git] / themes / monostochastic.php
index c8881fbb6ace535cfca5285670509172202cef4c..14e539270fc7d70ecb5893859f267945f124c658 100755 (executable)
@@ -2,24 +2,26 @@
 
 /**
  * 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-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 */
+/** seed the random number generator */
 sq_mt_randomize();
 
 /** light(1) or dark(0) background toggle **/
 $bg = mt_rand(0,1);
+
 /** range delimiter **/
 $bgrd = $bg * 128;
 
@@ -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);
     }
 }
 
@@ -72,4 +74,4 @@ $color[14]  = '#xxxxxx';  // Color for quoted text -- >> 2 or more
 
 */
 
-?>
+?>
\ No newline at end of file