From b3af270d57f702eda1f058c7d7d0b5ec7a5dc614 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?R=C3=A9mi=20Oudin?= <oudin@crans.org>
Date: Sat, 19 Oct 2019 11:37:51 +0200
Subject: [PATCH] Bug fix : cannot create an account at first donation

---
 app/controller/campaign.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/controller/campaign.php b/app/controller/campaign.php
index 353deda..8e924e3 100644
--- a/app/controller/campaign.php
+++ b/app/controller/campaign.php
@@ -109,7 +109,7 @@ class Campaign extends Controller
 
             $user = $f3->get('container')['user_finder']->findByEmail(\Utils::asl($email));
 
-            if (count($user) > 0 && is_array($user)) {
+            if (is_array($user) && count($user) > 0) {
                 // We have an existing user, we should try to login with the provided password
                 // or 403.
                 $mapper = new \DB\SQL\Mapper($f3->get('DB'), 'users');
-- 
GitLab