summaryrefslogtreecommitdiff
path: root/skins/common/wikibits.js
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2008-03-21 11:49:34 +0100
committerPierre Schmitz <pierre@archlinux.de>2008-03-21 11:49:34 +0100
commit086ae52d12011746a75f5588e877347bc0457352 (patch)
treee73263c7a29d0f94fafb874562610e16eb292ba8 /skins/common/wikibits.js
parent749e7fb2bae7bbda855de3c9e319435b9f698ff7 (diff)
Update auf MediaWiki 1.12.0
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);
}