summaryrefslogtreecommitdiff
path: root/skins/common/wikibits.js
diff options
context:
space:
mode:
Diffstat (limited to 'skins/common/wikibits.js')
-rw-r--r--skins/common/wikibits.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js
index 11ede270..cdb5c9de 100644
--- a/skins/common/wikibits.js
+++ b/skins/common/wikibits.js
@@ -44,8 +44,6 @@ if (typeof stylepath != 'undefined' && typeof skin != 'undefined') {
document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera6Fixes.css">');
} else if (is_opera_seven && !is_opera_95) {
document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera7Fixes.css">');
- } else if (is_opera_95) {
- document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/Opera95Fixes.css">');
} else if (is_khtml) {
document.write('<link rel="stylesheet" type="text/css" href="'+stylepath+'/'+skin+'/KHTMLFixes.css">');
}
@@ -1146,7 +1144,7 @@ function ts_dateToSortKey(date) {
function ts_parseFloat(num) {
if (!num) return 0;
- num = parseFloat(num.replace(/,/, ""));
+ num = parseFloat(num.replace(/,/g, ""));
return (isNaN(num) ? 0 : num);
}