diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-28 14:21:41 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-09-28 14:21:41 +0000 |
| commit | c41f6c7a587d9a84c4ddb43f61a7bcb2cf4085ae (patch) | |
| tree | 5e6e9b8e259259cbb004580070348794eb052efa /roundcubemail/program/js/app.js | |
| parent | 9d05faec1bb4f8e06cb11c0e96e4f42431c47e98 (diff) | |
Fix timezone settings
git-svn-id: https://svn.roundcube.net/trunk@5287 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
| -rw-r--r-- | roundcubemail/program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js index 1a8d96793..d2760b439 100644 --- a/roundcubemail/program/js/app.js +++ b/roundcubemail/program/js/app.js @@ -383,7 +383,7 @@ function rcube_webmail() var tz = new Date().getTimezoneOffset() / -60; var stdtz = new Date().getStdTimezoneOffset() / -60; $('#rcmlogintz').val(stdtz); - $('#rcmlogindst').val(tz > stdtz ? 0 : 0); + $('#rcmlogindst').val(tz > stdtz ? 1 : 0); // display 'loading' message on form submit, lock submit button $('form').submit(function () { |
