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) {
|
function getLocaltimeFromTimestamp(timestamp) {
|
||||||
logIt(timestamp);
|
logIt(timestamp);
|
||||||
if (useClientTimezone) {
|
if (useClientTimezone) {
|
||||||
var localtime = new Date(timestamp + "Z");
|
var localtime = new Date(timestamp.replace(/-/g, "/") + " GMT");
|
||||||
return localtime.toLocaleString();
|
return localtime.toLocaleString();
|
||||||
} else {
|
} else {
|
||||||
return timestamp;
|
return timestamp;
|
||||||
|
|
Loading…
Reference in a new issue