From: Andrew Dolgov Date: Sat, 30 Sep 2006 07:20:54 +0000 (+0100) Subject: do not die if DEFAULT_UPDATE_INTERVAL is not found X-Git-Tag: 1.2.4~65 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=e289ca71598174e583d926bcee18dd812077f6ef;p=tt-rss.git do not die if DEFAULT_UPDATE_INTERVAL is not found --- diff --git a/functions.php b/functions.php index 1475bc05..e408376b 100644 --- a/functions.php +++ b/functions.php @@ -178,7 +178,7 @@ $upd_intl = $line["update_interval"]; if (!$upd_intl || $upd_intl == 0) { - $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id); + $upd_intl = get_pref($link, 'DEFAULT_UPDATE_INTERVAL', $user_id, false); } if ($upd_intl < 0) {