diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-05-28 20:26:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-05-28 20:26:23 -0400 |
commit | 937079709514c037959d691c0d653c39d5ea84e6 (patch) | |
tree | 37e0d6c28c0b2294d433e48e454358ced66ac6c9 /app/Import | |
parent | 729c933d001d699837d90d151acbed1093a8c6f5 (diff) |
Minor fixes
Diffstat (limited to 'app/Import')
-rw-r--r-- | app/Import/UserImport.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Import/UserImport.php b/app/Import/UserImport.php index c877e82a..304a3254 100644 --- a/app/Import/UserImport.php +++ b/app/Import/UserImport.php @@ -56,7 +56,7 @@ class UserImport extends Base $row = $this->prepare($row); if ($this->validateCreation($row)) { - if ($this->userModel->create($row)) { + if ($this->userModel->create($row) !== false) { $this->logger->debug('UserImport: imported successfully line '.$line_number); $this->counter++; } else { |