summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-02-27 09:41:32 +0100
committerAndrew Dolgov <[email protected]>2006-02-27 09:41:32 +0100
commitc7a8abe600c1ff9b602e0a2e16de5ceade6ebf1b (patch)
tree85215af55dec42fd890e94cf52220544eaa0878c /backend.php
parentad507f85048955a13a846139b837bc84faf0fe66 (diff)
remove target= from catchupPage() link
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/backend.php b/backend.php
index b1b9e61f1..95e461c2f 100644
--- a/backend.php
+++ b/backend.php
@@ -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;
}