PDA

View Full Version : modify a tag


greychops
03-03-2008, 10:25 PM
Can someone tell me how to view the code for a tag?

I would like to modify the <SITE_RSS_LINK> tag so it says rss feed, instead of RSS 2.0.

Thanks,
Jonathan

fredxeric
03-03-2008, 11:05 PM
includes/functions_feeds.php

[line 855]$tpl = ereg_replace("<SITE_RSS_LINK>","<a href='./index.php?x=rss'>RSS 2.0</a>",$tpl);

greychops
03-04-2008, 12:41 AM
Easier than I thought.
Thanks!