From: Markus Bartz Date: Thu, 21 Jul 2011 16:15:16 +0000 (+0200) Subject: Fixed a small bug with WCF.String.addThousandsSeparator() X-Git-Tag: 2.0.0_Beta_1~1964^2~1 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=1d1dd925db5e4269889d6b63215634c729341fff;p=GitHub%2FWoltLab%2FWCF.git Fixed a small bug with WCF.String.addThousandsSeparator() --- diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 432134e57f..1db72f9ef8 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -1100,7 +1100,7 @@ WCF.String = { $negative = true; $numberString = $numberString.substring(1); } - var $separator = this.options.thousandsSeparator; + var $separator = WCF.Language.get('wcf.global.thousandsSeparator'); if ($separator != null && $separator != '') { var $numElements = new Array();