diff options
author | Alexander Menk <menk@mestrona.net> | 2016-12-21 09:45:02 +0100 |
---|---|---|
committer | Alexander Menk <menk@mestrona.net> | 2016-12-21 09:45:02 +0100 |
commit | c7d69869cd13f9d0434703e5eef60a29aba8de90 (patch) | |
tree | 0342fce589880eb99f854c991282d49039e06a54 /web/app/view/CommandDialogController.js | |
parent | 34fdca37d4a5a2d058345c60af028acad4edf8d8 (diff) | |
download | trackermap-web-c7d69869cd13f9d0434703e5eef60a29aba8de90.tar.gz trackermap-web-c7d69869cd13f9d0434703e5eef60a29aba8de90.tar.bz2 trackermap-web-c7d69869cd13f9d0434703e5eef60a29aba8de90.zip |
#2702 SetTimezone: Really - Conversion to Seconds NOT Minutes
Diffstat (limited to 'web/app/view/CommandDialogController.js')
-rw-r--r-- | web/app/view/CommandDialogController.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/CommandDialogController.js b/web/app/view/CommandDialogController.js index e6823d3d..6e809fa1 100644 --- a/web/app/view/CommandDialogController.js +++ b/web/app/view/CommandDialogController.js @@ -86,7 +86,7 @@ Ext.define('Traccar.view.CommandDialogController', { attributes = this.lookupReference('paramSetTimezone'); value = attributes.down('numberfield[name="timezone"]').getValue(); record.set('attributes', { - timezone: value * 60 + timezone: value * 3600 }); } |