aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-12-12 17:10:19 -0800
committerfriendica <info@friendica.com>2011-12-12 17:10:19 -0800
commite74a960327a0bf14ac3699fa9a28939ed22ae356 (patch)
tree584afb8f50f3870467992761ac363b6d647bd7bf /boot.php
parent01cae9a50af5207f014c99f9a97b7b93d70eaaa2 (diff)
downloadvolse-hubzilla-e74a960327a0bf14ac3699fa9a28939ed22ae356.tar.gz
volse-hubzilla-e74a960327a0bf14ac3699fa9a28939ed22ae356.tar.bz2
volse-hubzilla-e74a960327a0bf14ac3699fa9a28939ed22ae356.zip
change default ajax interval to 40 seconds
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot.php b/boot.php
index 2553642fc..b02b0be98 100644
--- a/boot.php
+++ b/boot.php
@@ -422,9 +422,9 @@ class App {
}
function init_pagehead() {
- $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 30000);
+ $interval = ((local_user()) ? get_pconfig(local_user(),'system','update_interval') : 40000);
if($interval < 10000)
- $interval = 30000;
+ $interval = 40000;
$this->page['title'] = $this->config['sitename'];
$tpl = file_get_contents('view/head.tpl');