mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 09:22:33 +00:00
Strict comparison
This commit is contained in:
@@ -60,7 +60,7 @@ class NewFinTSJobHandler implements FinTSConfigurationInterface
|
|||||||
|
|
||||||
$incomplete = false;
|
$incomplete = false;
|
||||||
foreach ($config as $value) {
|
foreach ($config as $value) {
|
||||||
$incomplete = $value == '' or $incomplete;
|
$incomplete = $value === '' or $incomplete;
|
||||||
}
|
}
|
||||||
if ($incomplete) {
|
if ($incomplete) {
|
||||||
return new MessageBag([trans('import.incomplete_fints_form')]);
|
return new MessageBag([trans('import.incomplete_fints_form')]);
|
||||||
|
Reference in New Issue
Block a user