Open-AudIT
https://www.open-audit.org/phpBB3/

rss feed image code bug correction
https://www.open-audit.org/phpBB3/viewtopic.php?f=5&t=2583
Page 1 of 1

Author:  infomate [ Wed Jan 23, 2008 12:39 am ]
Post subject:  rss feed image code bug correction

I found a code bug in the rss feed code.


Change all the rss feed codes from:

[code]echo '<rss version="2.0">'."\n";
echo '<channel>'."\n";
echo '<image>'."\n";
echo '<url>'.$sitename.'favicon.ico</url>'."\n";
echo '</image>'."\n";
echo '<title>'.$sitename.'</title>'."\n";
echo '<link>'.$sitebaseurl.'</link>'."\n";
[/code]

to this:
[code] echo '<rss version="2.0">'."\n";
echo '<channel>'."\n";
echo '<image>'."\n";
echo '<url>'.'./favicon.ico'.'</url>'."\n";
echo '</image>'."\n";
echo '<title>'.$sitename.'</title>'."\n";
echo '<link>'.$sitebaseurl.'</link>'."\n";
echo '<description>'.$sitedescription.'</description>'."\n";
[/code]

Author:  A_Hull [ Wed Jan 23, 2008 8:43 pm ]
Post subject:  Re: rss feed image code bug correction

Can yoy post the nature of the bug, and this information in the BUGS section please, otherwise it may be missed.

Thanks

Page 1 of 1 All times are UTC + 10 hours
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/