Fixed Rabo importer.

This commit is contained in:
James Cole
2015-07-09 19:23:49 +02:00
parent 5df09dab09
commit 20cffd0502
2 changed files with 19 additions and 2 deletions

View File

@@ -65,6 +65,9 @@ class FireflyValidator extends Validator
if (!is_string($value)) {
return false;
}
if (is_null($value)) {
return false;
}
if (strlen($value) === 0) {
return false;