nando99
05-03-2009, 12:17 AM
I was wondering if theres a way to put an hyphen ( - ) between the prefix and thread title in RSS feeds?
http://feeds2.feedburner.com/FatBoyMagazine
for example:
World News Zombies are taking over London! Not Kidding!
would be
World News - Zombies are taking over London! Not Kidding!
it would be in the feed php file right? just don't know what to change...
thanks in advance
--------------- Added 1241322742 at 1241322742 ---------------
a good friend helped me out with this...
in external.php find
$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' ' : '');
and replace it with:
$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' - ' : '');
http://feeds2.feedburner.com/FatBoyMagazine
for example:
World News Zombies are taking over London! Not Kidding!
would be
World News - Zombies are taking over London! Not Kidding!
it would be in the feed php file right? just don't know what to change...
thanks in advance
--------------- Added 1241322742 at 1241322742 ---------------
a good friend helped me out with this...
in external.php find
$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' ' : '');
and replace it with:
$thread['prefix_plain'] = ($thread['prefixid'] ? $vbphrase["prefix_$thread[prefixid]_title_plain"] . ' - ' : '');