From 6770b8396acec5b5d1abc1f475ab97985e68726f Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 4 Oct 2017 14:58:03 +0200 Subject: [PATCH] Fix sprintf error #893 --- app/Import/Storage/ImportStorage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Import/Storage/ImportStorage.php b/app/Import/Storage/ImportStorage.php index e5b9f1fec8..a644af60b0 100644 --- a/app/Import/Storage/ImportStorage.php +++ b/app/Import/Storage/ImportStorage.php @@ -214,7 +214,7 @@ class ImportStorage { Log::debug('Check if is a double transfer.'); if ($parameters['type'] !== TransactionType::TRANSFER) { - Log::debug(sprintf('Is a %s, not a transfer so no.' . $parameters['type'])); + Log::debug(sprintf('Is a %s, not a transfer so no.', $parameters['type'])); return false; }