Merge pull request #456 from andersk/disable-feed-browser
Make _DISABLE_FEED_BROWSER also disable the updateFeedBrowser RPC
This commit is contained in:
commit
5078ebcc6f
2 changed files with 4 additions and 0 deletions
|
@ -379,6 +379,8 @@ class RPC extends Handler_Protected {
|
|||
}
|
||||
|
||||
function updateFeedBrowser() {
|
||||
if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
|
||||
|
||||
$search = $this->dbh->escape_string($_REQUEST["search"]);
|
||||
$limit = $this->dbh->escape_string($_REQUEST["limit"]);
|
||||
$mode = (int) $this->dbh->escape_string($_REQUEST["mode"]);
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
<?php
|
||||
function make_feed_browser($search, $limit, $mode = 1) {
|
||||
|
||||
if (defined('_DISABLE_FEED_BROWSER') && _DISABLE_FEED_BROWSER) return;
|
||||
|
||||
$owner_uid = $_SESSION["uid"];
|
||||
$rv = '';
|
||||
|
||||
|
|
Loading…
Reference in a new issue