mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-22 23:11:28 +00:00
rpc/checkforupdates: restrict to administrative access level
This commit is contained in:
@@ -601,7 +601,7 @@ class RPC extends Handler_Protected {
|
|||||||
function checkforupdates() {
|
function checkforupdates() {
|
||||||
$rv = [];
|
$rv = [];
|
||||||
|
|
||||||
if (CHECK_FOR_UPDATES && defined("GIT_VERSION_TIMESTAMP")) {
|
if (CHECK_FOR_UPDATES && $_SESSION["access_level"] >= 10 && defined("GIT_VERSION_TIMESTAMP")) {
|
||||||
$content = @fetch_file_contents(["url" => "https://tt-rss.org/version.json"]);
|
$content = @fetch_file_contents(["url" => "https://tt-rss.org/version.json"]);
|
||||||
|
|
||||||
if ($content) {
|
if ($content) {
|
||||||
|
|||||||
Reference in New Issue
Block a user