aboutsummaryrefslogtreecommitdiffstats
path: root/functions
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2008-12-26 17:07:52 +0000
committerJim Hu <jimhu@users.sourceforge.net>2008-12-26 17:07:52 +0000
commit65c00ba1223eb97ff618fd661402a74c037c58cd (patch)
tree3f22f787cda6dead8286e5433caf63114df6f2da /functions
parenta02ca8fd76dfa6b0f280780f76fb9bfce5a9fd36 (diff)
downloadphpicalendar-65c00ba1223eb97ff618fd661402a74c037c58cd.tar.gz
phpicalendar-65c00ba1223eb97ff618fd661402a74c037c58cd.tar.bz2
phpicalendar-65c00ba1223eb97ff618fd661402a74c037c58cd.zip
squelch warnings in event.php
Diffstat (limited to 'functions')
-rw-r--r--functions/ical_parser.php4
-rw-r--r--functions/parse/parse_tzs.php10
2 files changed, 6 insertions, 8 deletions
diff --git a/functions/ical_parser.php b/functions/ical_parser.php
index 23c31c1..febe27f 100644
--- a/functions/ical_parser.php
+++ b/functions/ical_parser.php
@@ -233,11 +233,9 @@ foreach ($cal_filelist as $cal_key=>$filename) {
if (ereg ("([^:]+):(.*)", $line, $line)){
$field = $line[1];
$data = $line[2];
-
- $property = $field;
+ $property = strtoupper($field);
$prop_pos = strpos($property,';');
if ($prop_pos !== false) $property = substr($property,0,$prop_pos);
- $property = strtoupper($property);
switch ($property) {
diff --git a/functions/parse/parse_tzs.php b/functions/parse/parse_tzs.php
index 734851e..8b02cb5 100644
--- a/functions/parse/parse_tzs.php
+++ b/functions/parse/parse_tzs.php
@@ -54,13 +54,13 @@ while (!feof($ifile)) {
); #echo "<pre>$tz_id"; print_r($tz_array[$tz_id]);echo"</pre>";
break;
default:
- unset ( $data, $prop_pos, $property);
- if (ereg ("([^:]+):(.*)", $line, $arr)){
- $property = $arr[1];
- $data = $arr[2];
+ unset ($field, $data, $prop_pos, $property);
+ if (ereg ("([^:]+):(.*)", $line, $line)){
+ $field = $line[1];
+ $data = $line[2];
+ $property = strtoupper($field);
$prop_pos = strpos($property,';');
if ($prop_pos !== false) $property = substr($property,0,$prop_pos);
- $property = strtoupper($property);
switch ($property) {
case 'TZID':
$tz_id = $data;

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