From f93d11643f146818ac00c6e56951fd7cbc48a918 Mon Sep 17 00:00:00 2001 From: koziolek Date: Sat, 2 Sep 2017 20:11:37 +0200 Subject: [PATCH] Fix formatting when currency symbol is separated and follows amount --- app/Support/Amount.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Support/Amount.php b/app/Support/Amount.php index f1b6247cf8..62ad0b4a6b 100644 --- a/app/Support/Amount.php +++ b/app/Support/Amount.php @@ -130,7 +130,7 @@ class Amount $result = $format->symbol . $space . $formatted; if (!$precedes) { - $result = $space . $formatted . $format->symbol; + $result = $formatted . $space . $format->symbol; } if ($coloured === true) {