From 48218216d38f52305a7a51939a9d55210af4baa9 Mon Sep 17 00:00:00 2001 From: Jim Hu Date: Sun, 28 Dec 2008 02:07:53 +0000 Subject: fix undef $rss in rss.php --- functions/ical_parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'functions') diff --git a/functions/ical_parser.php b/functions/ical_parser.php index 82e76fe..a70522c 100644 --- a/functions/ical_parser.php +++ b/functions/ical_parser.php @@ -125,7 +125,7 @@ foreach ($cal_filelist as $cal_key=>$filename) { $nextline = fgets($ifile, 1024); $nextline = ereg_replace("[\r\n]", "", $nextline); } - $line = trim($line); + $line = trim(stripslashes($line)); switch ($line) { case 'BEGIN:VEVENT': -- cgit v1.2.3