When you import a remote feed, you have not selected anything to be the Link_summary. So when the front page/ queued page is displayed, it can't find the summary so it will take the content, and truncate it.
In your case the you have html tags which are quite big. so pligg thinks this is just text and truncates it. that why you have ... in the middle of the link
Unfortunately pligg isn't smart enough to take html tags when truncating.
So for the mean time you can apply this little patch
in /libs/link.php
replace
PHP Code:
if($this->link_summary == ""){
$smarty->assign('story_content', $this->truncate_content());
} else {
$smarty->assign('story_content', $this->link_summary);
}
PHP Code:
if($this->link_summary == ""){
$smarty->assign('story_content', $this->content);
} else {
$smarty->assign('story_content', $this->link_summary);
}





Linear Mode




