RSS links are off site links that need to open in a new page - or you will be sending people OFF YOUR site to some other site - not what most administrators want to do.
inc/design.inc.php
find:
change to:Code:<a href="<?= $oItem -> link ?>"><?= htmlspecialchars_adv( $oItem -> title ) ?></a>
and findCode:<a href="<?= $oItem -> link ?>" target="_blank"><?= htmlspecialchars_adv( $oItem -> title ) ?></a>
change toCode:<a href="<?= $oRSS -> link ?>"><?= _t( '_Visit Source' ) ?></a>
Code:<a href="<?= $oRSS -> link ?>" target="_blank"><?= _t( '_Visit Source' ) ?></a>
In the admin panel - for you, the administrator, so you don't get sent off your admin panel:
find in admin/index.php
change toCode:<div class="news_title"><a href="<?=$oItem -> link?>"><?=$oItem -> title?></a></div>
Code:<div class="news_title"><a href="<?=$oItem -> link?>" target="_blank"><?=$oItem -> title?></a></div>


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks