Commit 9470faf2 by Carsten Brandt

Merge pull request #3160 from marsuboss/patch-1

Fix typo
parents 707e4e81 db244a61
...@@ -423,8 +423,8 @@ class Formatter extends Component ...@@ -423,8 +423,8 @@ class Formatter extends Component
if ($value === null) { if ($value === null) {
return $this->nullDisplay; return $this->nullDisplay;
} }
$ds = isset($this->decimalSeparator) ? $this->decimalSeparator: '.'; $ds = isset($this->decimalSeparator) ? $this->decimalSeparator : '.';
$ts = isset($this->thousandSeparator) ? $this->thousandSeparator: ','; $ts = isset($this->thousandSeparator) ? $this->thousandSeparator : ',';
return number_format($value, $decimals, $ds, $ts); return number_format($value, $decimals, $ds, $ts);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment