MDL-10425 and MDL-12872 Firefox bugs String() handling on replace. enhanced rege xfor CMI data types.

This commit is contained in:
piers
2008-08-04 20:21:46 +00:00
parent ed94cb66c6
commit d5f3bdc985
4 changed files with 17 additions and 19 deletions
+1 -1
View File
@@ -74,6 +74,6 @@
var errorCode = "0";
function underscore(str) {
str = str.replace(/.N/g,".");
str = String(str).replace(/.N/g,".");
return str.replace(/\./g,"__");
}