summaryrefslogtreecommitdiff
path: root/modules/pref-feeds.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-01-28 18:49:17 +0300
committerAndrew Dolgov <[email protected]>2010-01-28 18:49:17 +0300
commit0b9751cd650c917d3e7f5dc5493483f8b026bf21 (patch)
tree5a1526f465e11835dd9df3ab9a4e298b939ad52d /modules/pref-feeds.php
parent2712bcea09a5db4477fefbf939324d24cb72d838 (diff)
theme_image: do not display themed image if noone is logged in
Diffstat (limited to 'modules/pref-feeds.php')
-rw-r--r--modules/pref-feeds.php33
1 files changed, 18 insertions, 15 deletions
diff --git a/modules/pref-feeds.php b/modules/pref-feeds.php
index 591597337..0329a1298 100644
--- a/modules/pref-feeds.php
+++ b/modules/pref-feeds.php
@@ -1192,24 +1192,27 @@
print "<button onclick=\"javascript:removeSelectedFeeds()\">"
.__('Unsubscribe')."</button> ";
- if (defined('_ENABLE_FEED_DEBUGGING')) {
-
- print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
- <option value=\"facDefault\" selected>".__('More actions...')."</option>";
-
- if (FORCE_ARTICLE_PURGE == 0) {
- print
- "<option value=\"facPurge\">".__('Manual purge')."</option>";
- }
-
- print "
- <option value=\"facClear\">".__('Clear feed data')."</option>
- <option value=\"facRescore\">".__('Rescore articles')."</option>";
-
- print "</select>";
+/* print "<select id=\"feedActionChooser\" onchange=\"feedActionChange()\">
+ <option value=\"facDefault\" selected>".__('Other actions...')."</option>";
+ if (FORCE_ARTICLE_PURGE == 0) {
+ print
+ "<option value=\"facPurge\">".__('Manual purge')."</option>";
}
+ print "
+ <option value=\"facClear\">".__('Clear feed data')."</option>
+ <option value=\"facRescore\">".__('Rescore articles')."</option>
+ <option value=\"facUnsubscribe\">".__('Unsubscribe')."</option>";
+
+ print "</select>"; */
+
+/* if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) {
+ print " <input type=\"submit\" class=\"button\"
+ id=\"top25_feeds_btn\"
+ onclick=\"javascript:browseFeeds()\" value=\"".__('More feeds')."\">";
+ } */
+
$feeds_sort = db_escape_string($_REQUEST["sort"]);
if (!$feeds_sort || $feeds_sort == "undefined") {