Update of /cvsroot/phpicalendar/phpicalendar/rss
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26890/phpicalendar/rss
Modified Files:
rss1.0.php
Log Message:
fix missing quote mark
Index: rss1.0.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/rss/rss1.0.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** rss1.0.php 14 Aug 2006 04:48:40 -0000 1.3
--- rss1.0.php 14 Aug 2006 05:57:32 -0000 1.4
***************
*** 227,231 ****
}
if (($events_count < 1) && ($i == $numdays)) {
! $rss_items .= '<item rdf:about="'.$default_path."\>\n";
$rss_items .= '<title>No events found</title>'."\n";
$rss_items .= '<link>'.htmlspecialchars ("$default_path").'</link>'."\n";
--- 227,231 ----
}
if (($events_count < 1) && ($i == $numdays)) {
! $rss_items .= '<item rdf:about="'.$default_path."\">\n";
$rss_items .= '<title>No events found</title>'."\n";
$rss_items .= '<link>'.htmlspecialchars ("$default_path").'</link>'."\n";
|