Closed
Bug 94393
Opened 23 years ago
Closed 23 years ago
Date.toLocaleString does not work on Russian locale under Unix
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
People
(Reporter: ftang, Assigned: khanson)
Details
this is a spin off from 88667.
We probably want to fix 88667 by work around it.
The problem is the date.toLocaleString() does not implement unicode correctly
so we will show garbage if the locale string contains any non Latin 1
characters.
see 88667 for details.
The problem code is in mozilla/js/src/jsdate.c use char as data type but not
unicode as data time.
I think the problem code is
1647 str = JS_NewStringCopyZ(cx, buf);
Comment 2•23 years ago
|
||
Looks like a dupe of bug 83092
"Date.toLocaleString should return a Unicode string"
*** This bug has been marked as a duplicate of 83092 ***
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Summary: Date.toLocalString does not work on Russian locale under Unix → Date.toLocaleString does not work on Russian locale under Unix
You need to log in
before you can comment on or make changes to this bug.
Description
•