Merge pull request #806 from pkoziol/develop

Fix formatting when currency symbol is separated and follows amount
This commit is contained in:
James Cole
2017-09-03 09:45:21 +02:00
committed by GitHub

View File

@@ -130,7 +130,7 @@ class Amount
$result = $format->symbol . $space . $formatted; $result = $format->symbol . $space . $formatted;
if (!$precedes) { if (!$precedes) {
$result = $space . $formatted . $format->symbol; $result = $formatted . $space . $format->symbol;
} }
if ($coloured === true) { if ($coloured === true) {