aboutsummaryrefslogtreecommitdiffstats
path: root/rss/rss_common.php
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2008-12-20 03:22:54 +0000
committerJim Hu <jimhu@users.sourceforge.net>2008-12-20 03:22:54 +0000
commit9b00469b471a8b159c60ecca333f0f7064ba1d27 (patch)
treee4716278c994d577c67a9bf3887c453c56b67030 /rss/rss_common.php
parent3734188aa20c0fad1610e5de3078d7d022694bbd (diff)
downloadphpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.tar.gz
phpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.tar.bz2
phpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.zip
misc error warnings and notices
Diffstat (limited to 'rss/rss_common.php')
-rw-r--r--rss/rss_common.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/rss/rss_common.php b/rss/rss_common.php
index 9a7fd4f..e36ceba 100644
--- a/rss/rss_common.php
+++ b/rss/rss_common.php
@@ -21,7 +21,7 @@
Lines modified: 135-165, 208-223
Additional mods by J. Hu
*/
-
+$current_view = 'rss';
require(BASE.'functions/init.inc.php');
if ($phpiCal_config->enable_rss != 'yes') {
@@ -122,7 +122,7 @@ header ("ETag:\"$filemodtime\"");
// checks the user agents headers to see if they kept track of our
// stuff, if so be nice and send back a 304 and exit.
-if ( ($_SERVER['HTTP_IF_MODIFIED_SINCE'] == $filemodtime) || ($_SERVER['HTTP_IF_NONE_MATCH'] == $filemodtime)){
+if ( (@$_SERVER['HTTP_IF_MODIFIED_SINCE'] == $filemodtime) || (@$_SERVER['HTTP_IF_NONE_MATCH'] == $filemodtime)){
header ("HTTP/1.1 304 Not Modified");
exit;
}
@@ -154,7 +154,7 @@ do {
foreach ($master_array[("$thisdate")] as $event_times) {
foreach ($event_times as $uid=>$val) {
#handle multiday all day events
- if(!$val["event_start"]){
+ if(!isset($val["event_start"])){
if (isset($uid_arr[$uid])){
$uid_arr[$uid] .= "+$dayofweek" ;
continue;

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