1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-27 23:07:10 +00:00

support for web-demo mode (restricted rights)

This commit is contained in:
Andrew Dolgov
2005-08-23 12:34:07 +01:00
parent f48ba3c9e4
commit b0b4abcf37
3 changed files with 27 additions and 17 deletions

View File

@@ -3,6 +3,8 @@
function update_all_feeds($link, $fetch) {
if (WEB_DEMO_MODE) return;
pg_query("BEGIN");
if (!$fetch) {
@@ -27,6 +29,8 @@
function update_rss_feed($link, $feed_url, $feed) {
if (WEB_DEMO_MODE) return;
error_reporting(0);
$rss = fetch_rss($feed_url);
error_reporting (E_ERROR | E_WARNING | E_PARSE);