diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-18 18:09:54 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-09-18 18:09:54 +0100 |
commit | fc93ee89a9d30d15a9dde4638f018303739f8d9d (patch) | |
tree | 196811de70c535b0294f2717bce54f416f132a27 | |
parent | bdfe2c77868afd59716103091b0dfa05060252d5 (diff) | |
download | volse-hubzilla-fc93ee89a9d30d15a9dde4638f018303739f8d9d.tar.gz volse-hubzilla-fc93ee89a9d30d15a9dde4638f018303739f8d9d.tar.bz2 volse-hubzilla-fc93ee89a9d30d15a9dde4638f018303739f8d9d.zip |
If a short ping causes lots of issues, and anyone who has been here
a while tends to have a longer ping, we should probably have a longer
ping
-rwxr-xr-x | boot.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -982,9 +982,9 @@ class App { if ($user_scalable === false) $user_scalable = 1; - $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000); + $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 80000); if($interval < 10000) - $interval = 40000; + $interval = 80000; if(! x($this->page,'title')) $this->page['title'] = $this->config['system']['sitename']; |