aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-05-24 18:09:41 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-05-24 18:09:41 -0700
commit1828771557be409aea396751628966b02f3e2872 (patch)
tree5949d7342c4363e4fda51b7baa82e7b15c340cfd /mod/settings.php
parentd537fc854b89bc8af85f97ffcd637f8fb11bc601 (diff)
downloadvolse-hubzilla-1828771557be409aea396751628966b02f3e2872.tar.gz
volse-hubzilla-1828771557be409aea396751628966b02f3e2872.tar.bz2
volse-hubzilla-1828771557be409aea396751628966b02f3e2872.zip
timezone setting not saved issue #336
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 0cb7992ed..550236c47 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -394,7 +394,7 @@ function settings_post(&$a) {
}
$username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
- $timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
+ $timezone = ((x($_POST,'timezone_select')) ? notags(trim($_POST['timezone_select'])) : '');
$defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
$openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
$maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);