From 532aa2acd0b456ce7fdf4619d6846dc5f1059691 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 21 Mar 2016 19:29:24 +0100 Subject: [PATCH] Fix amount [skip ci] --- 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 a0d4b3159b..e40385d38f 100644 --- a/app/Support/Amount.php +++ b/app/Support/Amount.php @@ -52,7 +52,7 @@ class Amount return '' . $result . ''; } else { if ($amount < 0) { - return '' . $result . ''; + return '' . $result . ''; } }