mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Strict comparisons.
This commit is contained in:
@@ -42,7 +42,7 @@ class AssetAccountIbans implements MapperInterface
|
||||
if (strlen($iban) > 0) {
|
||||
$topList[$account->id] = $account->iban . ' (' . $account->name . ')';
|
||||
}
|
||||
if (strlen($iban) == 0) {
|
||||
if (strlen($iban) === 0) {
|
||||
$list[$account->id] = $account->name;
|
||||
}
|
||||
}
|
||||
|
@@ -48,7 +48,7 @@ class OpposingAccountIbans implements MapperInterface
|
||||
if (strlen($iban) > 0) {
|
||||
$topList[$account->id] = $account->iban . ' (' . $account->name . ')';
|
||||
}
|
||||
if (strlen($iban) == 0) {
|
||||
if (strlen($iban) === 0) {
|
||||
$list[$account->id] = $account->name;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user