aboutsummaryrefslogtreecommitdiffstats
path: root/ical_parser.php
diff options
context:
space:
mode:
authorjwangen <jwangen>2002-10-01 07:10:08 +0000
committerjwangen <jwangen>2002-10-01 07:10:08 +0000
commit28794302cedc175099911a4a667191352cbaa93f (patch)
tree4ae8b8f0f60489f2459ac31673d232435ab58700 /ical_parser.php
parent0fefb33852f88188732083eccaf5999eead9e6d3 (diff)
downloadphpicalendar-28794302cedc175099911a4a667191352cbaa93f.tar.gz
phpicalendar-28794302cedc175099911a4a667191352cbaa93f.tar.bz2
phpicalendar-28794302cedc175099911a4a667191352cbaa93f.zip
implemented bug fix
Diffstat (limited to 'ical_parser.php')
-rw-r--r--ical_parser.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/ical_parser.php b/ical_parser.php
index d401eab..aa71e10 100644
--- a/ical_parser.php
+++ b/ical_parser.php
@@ -612,21 +612,23 @@ foreach($contents as $line) {
}
}
}
+
// Sort the array by absolute date.
if (is_array($master_array)) {
ksort($master_array);
reset($master_array);
-}
-
-// sort the sub (day) arrays so the times are in order
-foreach (array_keys($master_array) as $k) {
- if (is_array($master_array[$k])) {
- ksort($master_array[$k]);
- reset($master_array[$k]);
+
+ // sort the sub (day) arrays so the times are in order
+ foreach (array_keys($master_array) as $k) {
+ if (is_array($master_array[$k])) {
+ ksort($master_array[$k]);
+ reset($master_array[$k]);
+ }
}
}
+
// Store information in the session
/*if ($use_sessions == "yes") {
session_start();

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