aboutsummaryrefslogtreecommitdiffstats
path: root/preferences.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2002-11-25 23:57:26 +0000
committerChad Little <clittle@users.sourceforge.net>2002-11-25 23:57:26 +0000
commit65e13529dbfb308ff709cd5023177e6a4fa77965 (patch)
treeb0b63e921bf75a7f92e8946619bfd61bf5a37b3b /preferences.php
parentc576f9f7a5f7d11f53b69e7ddbdcd86a7b6e0721 (diff)
downloadphpicalendar-65e13529dbfb308ff709cd5023177e6a4fa77965.tar.gz
phpicalendar-65e13529dbfb308ff709cd5023177e6a4fa77965.tar.bz2
phpicalendar-65e13529dbfb308ff709cd5023177e6a4fa77965.zip
Fixed cookie style preference.
Diffstat (limited to 'preferences.php')
-rw-r--r--preferences.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/preferences.php b/preferences.php
index d27a617..5b4e20d 100644
--- a/preferences.php
+++ b/preferences.php
@@ -232,11 +232,11 @@ include(BASE.'functions/ical_parser.php');
while ($file = readdir($dir_handle)) {
if (($file != ".") && ($file != "..") && ($file != "CVS")) {
if (!is_file($file)) {
- $file = ucfirst($file);
+ $file_disp = ucfirst($file);
if ($file == "$cookie_style") {
- print "<option value=\"$file\" selected>$file</option>\n";
+ print "<option value=\"$file\" selected>$file_disp</option>\n";
} else {
- print "<option value=\"$file\">$file</option>\n";
+ print "<option value=\"$file\">$file_disp</option>\n";
}
}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy