Fixed problem with timestamps in Safari-Browsers
This commit is contained in:
parent
bffbf8ee6e
commit
490977c3db
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ function getTimezone() {
|
|||
function getLocaltimeFromTimestamp(timestamp) {
|
||||
logIt(timestamp);
|
||||
if (useClientTimezone) {
|
||||
var localtime = new Date(timestamp + "Z");
|
||||
var localtime = new Date(timestamp.replace(/-/g, "/") + " GMT");
|
||||
return localtime.toLocaleString();
|
||||
} else {
|
||||
return timestamp;
|
||||
|
|
Loading…
Reference in a new issue