View Single Post
  #9 (permalink)  
Old 06-02-2008, 09:01 PM
chuckroast's Avatar
chuckroast chuckroast is offline
Pligg Developer
 
Join Date: Jun 2006
Location: PA
Posts: 2,407
Thanks: 171
Thanked 440 Times in 279 Posts
Try this.. Open link_summary.tpl and find

Code:
{if $pagename eq "story"}
                    <a href="{$url}">{$title_short}</a>
                {else} 
                  <a href="{$story_url}">{$title_short}</a>
                {/if}
Try changing it to
Code:
{if $pagename eq "story"}
                    <a href="{$url}">{$title_short} target="_blank"</a>
                {else} 
                  <a href="{$story_url}">{$title_short}</a>
                {/if}
Hope that helps
__________________
Visit PliggPro the official Pligg Mods & Template Shop!

Reply With Quote