
Originally Posted by
a_berezin
Thanks!
yvw Andrew :-)
Do you think it would be useful to add a dynamic feed name feature? (Maybe you already have plans for this?) Having the same name for multiple subscribed feeds is quite confusing I think. Maybe add the word "featured" to the featured feed name , "specials" to the specials feed name etc etc?
And, I not sure if it's useful or not, and if it's the right way to fix this, but to prevent links like:
Code:
<link>http://www.mydomain.com//</link>
I changed (rss_feed.php class, function _clear_url()):
Code:
$out .= $pathinfo["dirname"] . '/';
To:
Code:
// $out .= $pathinfo["dirname"] . '/';
// prevent double slashes in path
$out .= rtrim($pathinfo["dirname"], '/');
$out .= '/';