Index: branches/5.2.x/core/kernel/utility/formatters/formatter.php =================================================================== diff -u -N -r14748 -r15137 --- branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 14748) +++ branches/5.2.x/core/kernel/utility/formatters/formatter.php (.../formatter.php) (revision 15137) @@ -1,6 +1,6 @@ _categoryHelper =& $this->Application->recallObject('CategoryHelper'); + $this->_categoryHelper = $this->Application->recallObject('CategoryHelper'); } /** @@ -109,7 +109,7 @@ static $comma = null, $thousands = null; if ( !isset($comma) || !isset($thousands) ) { - $lang =& $this->Application->recallObject('lang.current'); + $lang = $this->Application->recallObject('lang.current'); /* @var $lang LanguagesItem */ $comma = $lang->GetDBField('DecimalPoint'); @@ -187,7 +187,7 @@ } if (preg_match('#int|integer|double|float|real|numeric#', $options['type'])) { - $lang =& $this->Application->recallObject('lang.current'); + $lang = $this->Application->recallObject('lang.current'); /* @var $lang LanguagesItem */ return $lang->formatNumber($value);