diff options
author | friendica <info@friendica.com> | 2011-12-11 21:03:33 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-12-11 21:03:33 -0800 |
commit | a38d3b82b92436ccc7580de6b329d88f59ac08a5 (patch) | |
tree | 5d5bc31bde4e8ff43f43e72a6b14940846b3f227 /mod | |
parent | 4f254ffb5b4a74482c6d70dc1858f20c13ee8c01 (diff) | |
download | volse-hubzilla-a38d3b82b92436ccc7580de6b329d88f59ac08a5.tar.gz volse-hubzilla-a38d3b82b92436ccc7580de6b329d88f59ac08a5.tar.bz2 volse-hubzilla-a38d3b82b92436ccc7580de6b329d88f59ac08a5.zip |
browser_update settings
Diffstat (limited to 'mod')
-rw-r--r-- | mod/settings.php | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/mod/settings.php b/mod/settings.php index 3f5e0f2ed..e88e50a05 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -223,7 +223,12 @@ function settings_post(&$a) { $expire_notes = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes']) : 0); $expire_starred = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0); $expire_photos = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos']) : 0); - + + $browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0); + $browser_update = $browser_update * 1000; + if($browser_update < 10000) + $browser_update = 30000; + $allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0); $publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0); @@ -313,6 +318,7 @@ function settings_post(&$a) { set_pconfig(local_user(),'expire','photos', $expire_photos); set_pconfig(local_user(),'system','suggestme', $suggestme); + set_pconfig(local_user(),'system','update_interval', $browser_update); $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s', `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `theme` = '%s', `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d WHERE `uid` = %d LIMIT 1", dbesc($username), @@ -618,6 +624,9 @@ function settings_content(&$a) { $suggestme = get_pconfig(local_user(), 'system','suggestme'); $suggestme = (($suggestme===false)?0:$suggestme); // default if not set: 0 + + $browser_update = get_pconfig(local_user(), 'system','update_interval'); + $browser_update = (($browser_update===false)? 30 : $browser_update / 1000); // default if not set: 30 seconds if(! strlen($a->user['timezone'])) $timezone = date_default_timezone_get(); @@ -770,8 +779,7 @@ function settings_content(&$a) { '$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''), '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''), '$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes), - - + '$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')), '$h_prv' => t('Security and Privacy Settings'), |