diff options
| author | Andrew Dolgov <fox@madoka.spb.ru> | 2007-09-25 05:08:29 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.spb.ru> | 2007-09-25 05:08:29 +0100 |
| commit | 55826adcec8fe52b69f299a100a308b90b63dba2 (patch) | |
| tree | fa1bcd68dc80d7e32993887d58d73047263a5d1a /sanity_check.php | |
| parent | 0b89603694546d647cc4f6763eb13fc2ebfd5061 (diff) | |
sanity check: only check whether DAEMON_REFRESH_ONLY is defined
Diffstat (limited to 'sanity_check.php')
| -rw-r--r-- | sanity_check.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sanity_check.php b/sanity_check.php index a4f5c05c4..b62e5c0a8 100644 --- a/sanity_check.php +++ b/sanity_check.php @@ -74,7 +74,7 @@ $err_msg = __("config: option COUNTERS_MAX_AGE expected, but not defined"); } - if (defined('DAEMON_REFRESH_ONLY') && DAEMON_REFRESH_ONLY != true) { + if (defined('DAEMON_REFRESH_ONLY')) { $err_msg = __("config: option DAEMON_REFRESH_ONLY is obsolete. Please remove this option and read about other ways to update feeds on the <a href='http://tt-rss.spb.ru/trac/wiki/UpdatingFeeds'>wiki</a>."); } |