diff options
| author | Andrew Dolgov <fox@bah.spb.su> | 2006-09-30 08:20:54 +0100 |
|---|---|---|
| committer | Andrew Dolgov <fox@bah.spb.su> | 2006-09-30 08:20:54 +0100 |
| commit | e289ca71598174e583d926bcee18dd812077f6ef (patch) | |
| tree | 02f31619e7dca7e147d7cc3f3a467a685df7ff1b | |
| parent | abe4d057f3ca1e0d78e64ba6d5eba1425958ed8c (diff) | |
do not die if DEFAULT_UPDATE_INTERVAL is not found
| -rw-r--r-- | functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php index 1475bc053..e408376b5 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) { |