summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/pref-feeds.php6
-rw-r--r--tt-rss.css10
2 files changed, 13 insertions, 3 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index f4094241e..9548a2fa2 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -674,7 +674,7 @@
}
if ($qpart) {
- print(
+ db_query($link,
"UPDATE ttrss_feeds SET $qpart WHERE id IN ($feed_ids)
AND owner_uid = " . $_SESSION["uid"]);
print "<br/>";
@@ -1389,7 +1389,7 @@
print "<h3>" . __("Firefox Integration") . "</h3>";
print "<p>" . __('This Tiny Tiny RSS site can be used as a Firefox Feed Reader by clicking the link below.');
- print "</p><p> <a class='visibleLink' href='javascript:window.navigator.registerContentHandler(" .
+ print "</p><p> <a class='visibleLinkB' href='javascript:window.navigator.registerContentHandler(" .
"\"application/vnd.mozilla.maybe.feed\", " .
"\"" . add_feed_url() . "\", " . " \"Tiny Tiny RSS\")'>" .
__('Click here to register this site as a feed reader.') . "</a></p>";
@@ -1405,7 +1405,7 @@
$url_path = article_publish_url($link);
- print "<p><a class=\"visibleLink\" id=\"pubGenAddress\" target=\"_blank\" href=\"$url_path\">Link to published articles feed.</a></p>";
+ print "<p><a class=\"visibleLinkB\" 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')."\">";
diff --git a/tt-rss.css b/tt-rss.css
index 1f99a66c8..62ca4697a 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1907,6 +1907,16 @@ a.visibleLink {
}
+a.visibleLinkB {
+ color : #4684ff;
+ border : 1px solid #4684ff;
+ padding : 2px;
+}
+
+a.visibleLinkB:hover {
+ background-color : #ecf4ff;
+}
+
table.headlinesList tr.feedTitle td a, div.cdmFeedTitle a {
color : #4684ff;
}