mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-06 12:59:15 +00:00
change (wrong) _new link targets to _blank (2)
This commit is contained in:
@@ -96,8 +96,8 @@
|
||||
feed_url = '$feed_url'
|
||||
AND owner_uid = '$owner_uid'");
|
||||
|
||||
print "<tr><td><a target='_new' href='$site_url'><b>$feed_title</b></a></b>
|
||||
(<a target='_new' href=\"$feed_url\">rss</a>)</td>";
|
||||
print "<tr><td><a target='_blank' href='$site_url'><b>$feed_title</b></a></b>
|
||||
(<a target='_blank' href=\"$feed_url\">rss</a>)</td>";
|
||||
|
||||
if (db_num_rows($result) > 0) {
|
||||
print "<td>".__('Already imported.')."</td>";
|
||||
|
||||
@@ -99,8 +99,8 @@
|
||||
feed_url = '$feed_url'
|
||||
AND owner_uid = '$owner_uid'");
|
||||
|
||||
print "<tr><td><a target='_new' href='$site_url'><b>$feed_title</b></a></b>
|
||||
(<a target='_new' href=\"$feed_url\">rss</a>)</td>";
|
||||
print "<tr><td><a target='_blank' href='$site_url'><b>$feed_title</b></a></b>
|
||||
(<a target='_blank' href=\"$feed_url\">rss</a>)</td>";
|
||||
|
||||
if (db_num_rows($result) > 0) {
|
||||
print "<td>".__("Already imported.")."</td>";
|
||||
|
||||
@@ -36,8 +36,8 @@
|
||||
$last_updated = date($short_date, strtotime($last_updated));
|
||||
}
|
||||
|
||||
print __("Site:")." <a target=\"_new\" href='$site_url'>$site_url</a> ".
|
||||
"(<a target=\"_new\" href='$feed_url'>feed</a>), ".
|
||||
print __("Site:")." <a target=\"_blank\" href='$site_url'>$site_url</a> ".
|
||||
"(<a target=\"_blank\" href='$feed_url'>feed</a>), ".
|
||||
__("Last updated:")." $last_updated";
|
||||
|
||||
print "</div>";
|
||||
@@ -66,7 +66,7 @@
|
||||
$entry_dt = date($short_date, strtotime($line["updated"]));
|
||||
}
|
||||
|
||||
print "<li><a target=\"_new\" href=\"" . $line["link"] . "\">" . $line["title"] . "</a>" .
|
||||
print "<li><a target=\"_blank\" href=\"" . $line["link"] . "\">" . $line["title"] . "</a>" .
|
||||
" <span class=\"insensitive\">($entry_dt)</span></li>";
|
||||
}
|
||||
print "</ul></div>";
|
||||
|
||||
@@ -1153,7 +1153,7 @@
|
||||
|
||||
$url_path = article_publish_url($link);
|
||||
|
||||
print "<p><a class=\"visibleLink\" id=\"pubGenAddress\" target=\"_new\" href=\"$url_path\">Link to published articles feed.</a></p>";
|
||||
print "<p><a class=\"visibleLink\" id=\"pubGenAddress\" target=\"_blank\" href=\"$url_path\">Link to published articles feed.</a></p>";
|
||||
|
||||
print "<p><input type=\"submit\" onclick=\"return pubRegenKey()\" class=\"button\"
|
||||
value=\"".__('Generate another link')."\">";
|
||||
|
||||
Reference in New Issue
Block a user