diff --git a/functions.php b/functions.php
index 8640884a3..77161e8c2 100644
--- a/functions.php
+++ b/functions.php
@@ -2892,7 +2892,7 @@
}
- if (!strstr($_SESSION["client.userAgent"], "MSIE")) {
+ if (strpos($_SESSION["client.userAgent"], "MSIE") === false) {
print "
";
- if ($limit != 0) {
+ if ($limit != 0 && !$search) {
print "
".__('Next page')."
- ".__('Previous page')."
- ".__('First page')."
";
- }
+ }
+ if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+ print "
+
+ ".__('Convert to Label')." | ";
+ }
print "
";
@@ -2937,16 +2943,25 @@
__('Mark as read:')."
".__('Page').",
".__('Feed')."";
+
+ if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+
+ print "
+
+ ".__('Convert to Label')."";
+ }
+
print "";
}
- if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
+/* if ($search && $feed_id >= 0 && get_pref($link, 'ENABLE_LABELS') && GLOBAL_ENABLE_LABELS) {
print "
".__('Convert to Label')." | ";
- }
+} */
print "";
diff --git a/tt-rss.css b/tt-rss.css
index 122bfa9f8..8c1f7911e 100644
--- a/tt-rss.css
+++ b/tt-rss.css
@@ -1478,6 +1478,15 @@ ul.headlineDropdownMenu li.top2 {
float : left;
}
+ul.headlineDropdownMenu li.top3 {
+ float : left;
+ margin : 0px;
+ cursor : pointer;
+ border-width : 1px 1px 1px 1px;
+ border-color : transparent;
+ border-style : solid;
+}
+
ul.headlineDropdownMenu li.vsep {
float : left;
margin : 0px 5px 0px 0px;
|