From: kink Date: Mon, 28 Jan 2002 17:53:04 +0000 (+0000) Subject: Changed " to ' on some themes. X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=commitdiff_plain;h=1681f4d9d7070f1bfc4f9f5ce46b39caa8142537 Changed " to ' on some themes. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2263 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/themes/darkness.php b/themes/darkness.php index 073cb742..3dd97c48 100755 --- a/themes/darkness.php +++ b/themes/darkness.php @@ -1,6 +1,6 @@ ' . "\n"; + if (substr($PHP_SELF, -18) == '/src/left_main.php') { + echo '' . '\n'; } ?> text") when reading (default: #800000) +f 13: Color for single-quoted text ('> text') when reading (default: #800000) f 14: Color for text with more than one quote (default: #FF0000) **/ diff --git a/themes/greenhouse_effect.php b/themes/greenhouse_effect.php index 89aeaaac..009307b8 100755 --- a/themes/greenhouse_effect.php +++ b/themes/greenhouse_effect.php @@ -37,7 +37,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); } diff --git a/themes/in_the_pink.php b/themes/in_the_pink.php index ec1f380b..317894b1 100755 --- a/themes/in_the_pink.php +++ b/themes/in_the_pink.php @@ -32,7 +32,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); } diff --git a/themes/kind_of_blue.php b/themes/kind_of_blue.php index ba6d6cdc..f01c581a 100755 --- a/themes/kind_of_blue.php +++ b/themes/kind_of_blue.php @@ -36,7 +36,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); } diff --git a/themes/monostochastic.php b/themes/monostochastic.php index e8582759..352f7e48 100755 --- a/themes/monostochastic.php +++ b/themes/monostochastic.php @@ -44,9 +44,9 @@ $bt = mt_rand($cmin_t,$cmax_t); /** set array element as hex string with hashmark (for HTML output) **/ 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); } } diff --git a/themes/purple_theme.php b/themes/purple_theme.php index bdc7257b..dbe31391 100644 --- a/themes/purple_theme.php +++ b/themes/purple_theme.php @@ -14,18 +14,18 @@ */ global $color; -$color[0] = "#AC9ECB"; // (light purp) TitleBar -$color[1] = "#800000"; // (red) -$color[2] = "#CC0000"; // (light red) Warning/Error Messages -$color[3] = "#B6A7D5"; // (purple) Left Bar Background -$color[4] = "#EDE4FF"; // (light purple) Normal Background -$color[5] = "#DDD4EF"; // (darker gray) Table Headers -$color[6] = "#000000"; // (black) Text on left bar -$color[7] = "#622680"; // (light purple) Links -$color[8] = "#000000"; // (black) Normal text -$color[9] = "#877C9F"; // (mid purp) Darker version of #0 -$color[10] = "#726987"; // (dark purp) Darker version of #9 -$color[11] = "#770000"; // (dark red) Special Folders color -$color[12] = "#E0D9F2"; +$color[0] = '#AC9ECB'; // (light purp) TitleBar +$color[1] = '#800000'; // (red) +$color[2] = '#CC0000'; // (light red) Warning/Error Messages +$color[3] = '#B6A7D5'; // (purple) Left Bar Background +$color[4] = '#EDE4FF'; // (light purple) Normal Background +$color[5] = '#DDD4EF'; // (darker gray) Table Headers +$color[6] = '#000000'; // (black) Text on left bar +$color[7] = '#622680'; // (light purple) Links +$color[8] = '#000000'; // (black) Normal text +$color[9] = '#877C9F'; // (mid purp) Darker version of #0 +$color[10] = '#726987'; // (dark purp) Darker version of #9 +$color[11] = '#770000'; // (dark red) Special Folders color +$color[12] = '#E0D9F2'; -?> +?> \ No newline at end of file diff --git a/themes/shades_of_grey.php b/themes/shades_of_grey.php index 6d4473e1..02a684f2 100755 --- a/themes/shades_of_grey.php +++ b/themes/shades_of_grey.php @@ -36,7 +36,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); } diff --git a/themes/spice_of_life.php b/themes/spice_of_life.php index 95373d7b..cc799f42 100755 --- a/themes/spice_of_life.php +++ b/themes/spice_of_life.php @@ -41,7 +41,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); } diff --git a/themes/spice_of_life_dark.php b/themes/spice_of_life_dark.php index eff08e46..63ccd999 100755 --- a/themes/spice_of_life_dark.php +++ b/themes/spice_of_life_dark.php @@ -41,7 +41,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); } diff --git a/themes/spice_of_life_lite.php b/themes/spice_of_life_lite.php index 4744f00d..7fada5c9 100755 --- a/themes/spice_of_life_lite.php +++ b/themes/spice_of_life_lite.php @@ -41,7 +41,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); }