remove target= from catchupPage() link

This commit is contained in:
Andrew Dolgov 2006-02-27 09:41:32 +01:00
parent ad507f8504
commit c7a8abe600
1 changed files with 4 additions and 1 deletions

View File

@ -1458,7 +1458,10 @@
print "<td class=\"headlineTitle\">";
if ($feed_site_url) {
print "<a target=\"_blank\" href=\"$feed_site_url\">$feed_title</a>";
if (!$bottom) {
$target = "target=\"_blank\"";
}
print "<a $target href=\"$feed_site_url\">$feed_title</a>";
} else {
print $feed_title;
}