new global option: ENABLE_FEED_BROWSER
This commit is contained in:
parent
dbf4a4cf05
commit
e2f728be03
21
backend.php
21
backend.php
|
@ -1567,6 +1567,11 @@
|
|||
}
|
||||
|
||||
if ($subop == "browse") {
|
||||
|
||||
if (!ENABLE_FEED_BROWSER) {
|
||||
print "Feed browser is administratively disabled.";
|
||||
return;
|
||||
}
|
||||
|
||||
print "<div class=\"infoBoxContents\">";
|
||||
|
||||
|
@ -2057,10 +2062,13 @@
|
|||
onchange=\"javascript:addFeed()\"
|
||||
size=\"40\">
|
||||
<input type=\"submit\" class=\"button\"
|
||||
onclick=\"javascript:addFeed()\" value=\"Add feed\">
|
||||
|
||||
(<a href='javascript:browseFeeds()'>Top 50</a>)
|
||||
</td><td align='right'>
|
||||
onclick=\"javascript:addFeed()\" value=\"Add feed\">";
|
||||
|
||||
if (ENABLE_FEED_BROWSER) {
|
||||
print " (<a href='javascript:browseFeeds()'>Top 50</a>)";
|
||||
}
|
||||
|
||||
print "</td><td align='right'>
|
||||
<input id=\"feed_search\" size=\"20\"
|
||||
onchange=\"javascript:updateFeedList()\"
|
||||
value=\"$feed_search\">
|
||||
|
@ -3984,6 +3992,11 @@
|
|||
|
||||
if ($op == "pref-feed-browser") {
|
||||
|
||||
if (!ENABLE_FEED_BROWSER) {
|
||||
print "Feed browser is administratively disabled.";
|
||||
return;
|
||||
}
|
||||
|
||||
$subop = $_REQUEST["subop"];
|
||||
|
||||
if ($subop == "details") {
|
||||
|
|
|
@ -64,6 +64,9 @@
|
|||
|
||||
define('MAIL_FROM', 'TT-RSS Daemon <noreply@ttrss.your-shiny-host.org>');
|
||||
// Pretty obvious, I suppose.
|
||||
|
||||
define('ENABLE_FEED_BROWSER', true);
|
||||
// Enable or disable local feed browser
|
||||
|
||||
// vim:ft=php
|
||||
?>
|
||||
|
|
|
@ -87,8 +87,10 @@
|
|||
onclick="selectTab('genConfig')">
|
||||
<input id="feedConfigTab" class="prefsTab" type="submit" value="Feed Configuration"
|
||||
onclick="selectTab('feedConfig')">
|
||||
<? if (ENABLE_FEED_BROWSER) { ?>
|
||||
<input id="feedBrowserTab" class="prefsTab" type="submit" value="Feed Browser"
|
||||
onclick="selectTab('feedBrowser')">
|
||||
<? } ?>
|
||||
<input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
|
||||
onclick="selectTab('filterConfig')">
|
||||
<? if (GLOBAL_ENABLE_LABELS && get_pref($link, 'ENABLE_LABELS')) { ?>
|
||||
|
|
Loading…
Reference in New Issue