[RSS][/RSS] sets links to rss.php in 1.2.7
-
- Posts: 19
- Joined: Fri 11. Jun 2004, 11:10
[RSS][/RSS] sets links to rss.php in 1.2.7
So making a [RSS]rss-feed[/RSS] results in a link to rss.php and not the new feeds.php introduced in 1.2.7. A bug, i think. I couldn't post to Sourceforge for some reason...
[Ramchester]
YEP! there are still calls to "rss.php":
"index.php"
"index.php"
"include/inc_fron/front.func.inc.php"type="application/rss+xml" title="RSS" href="'.PHPWCMS_URL.'rss.php">'."\n";
// RSS feed link based on structure (category) ID
$search[12] = '/\[RSS (\d+)\](.*?)\[\/RSS\]/';
$replace[12] = '<a href="rss.php?rssfeed=$1" target="_blank">$2</a>';
// RSS feed link based on structure (category) ALIAS
$search[13] = '/\[RSS (\w+)\](.*?)\[\/RSS\]/';
$replace[13] = '<a href="rss.php?$1" target="_blank">$2</a>';