Merge branch 'develop' into v480

* develop:
  Fix #2204
  CSV file fix for Belfius
This commit is contained in:
James Cole
2019-04-09 07:51:11 +02:00
5 changed files with 186 additions and 1 deletions

View File

@@ -341,7 +341,7 @@ class FireflyValidator extends Validator
// check transaction type.
if ('transaction_type' === $triggerType) {
$count = TransactionType::where('type', strtolower($value))->count();
$count = TransactionType::where('type', ucfirst($value))->count();
return 1 === $count;
}