aboutsummaryrefslogtreecommitdiffstats
path: root/preferences.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2003-09-15 01:00:44 +0000
committerChad Little <clittle@users.sourceforge.net>2003-09-15 01:00:44 +0000
commitcab875ea0e16e37bc62b60782d0359865fc402e6 (patch)
treeb9dcc57c7b80bff07638afaf628d731caf4af94c /preferences.php
parentea8ebe6a3122e066814a23c5c9d7233a2d48fbf7 (diff)
downloadphpicalendar-cab875ea0e16e37bc62b60782d0359865fc402e6.tar.gz
phpicalendar-cab875ea0e16e37bc62b60782d0359865fc402e6.tar.bz2
phpicalendar-cab875ea0e16e37bc62b60782d0359865fc402e6.zip
Fix for bug #794853 listing dot-files.
Diffstat (limited to 'preferences.php')
-rw-r--r--preferences.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/preferences.php b/preferences.php
index d83bf4a..4dd231d 100644
--- a/preferences.php
+++ b/preferences.php
@@ -167,7 +167,7 @@ if ((!isset($HTTP_COOKIE_VARS['phpicalendar'])) || ($cookie_unset)) {
$dir_handle = @opendir($calendar_path) or die(error(sprintf($error_path_lang, $calendar_path), $cal_filename));
$filelist = array();
while ($file = readdir($dir_handle)) {
- if (substr($file, -4) == ".ics") {
+ if (preg_match("/^[^.].+\.ics$/", $file)) {
array_push($filelist, $file);
}
}

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