1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-23 20:21:29 +00:00

remove target= from catchupPage() link

This commit is contained in:
Andrew Dolgov
2006-02-27 09:41:32 +01:00
parent ad507f8504
commit c7a8abe600

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;
}