From: <cl...@us...> - 2003-05-29 18:28:04
|
Update of /cvsroot/phpicalendar/phpicalendar/includes In directory sc8-pr-cvs1:/tmp/cvs-serv24363/includes Modified Files: footer.inc.php Log Message: More error_reporting cleanup. Index: footer.inc.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/includes/footer.inc.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** footer.inc.php 11 Mar 2003 23:02:20 -0000 1.5 --- footer.inc.php 29 May 2003 18:28:01 -0000 1.6 *************** *** 4,8 **** if ($enable_rss == 'yes') { echo "<br>\n"; ! if ($current_view == 'rssindex') { echo '<a style="color:gray" href="http://feeds.archive.org/validator/check?url='.$footer_check.'"><img src="'.BASE.'images/valid-rss.png" alt="[Valid RSS]" title="Validate my RSS feed" width="88" height="31" border="1" vspace="3" />'; } else { --- 4,8 ---- if ($enable_rss == 'yes') { echo "<br>\n"; ! if ((isset($current_view)) && ($current_view == 'rssindex')) { echo '<a style="color:gray" href="http://feeds.archive.org/validator/check?url='.$footer_check.'"><img src="'.BASE.'images/valid-rss.png" alt="[Valid RSS]" title="Validate my RSS feed" width="88" height="31" border="1" vspace="3" />'; } else { |