1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Fix for spam checker

This commit is contained in:
Hillel Coren 2018-03-18 16:48:14 +02:00
parent e058c93b36
commit cd5b084187

View File

@ -130,7 +130,7 @@ class AccountRepository
{
$ip = Request::getClientIp();
$count = Account::whereIp($ip)->whereHas('users', function ($query) {
$query->whereConfirmed(true);
$query->whereRegistered(true);
})->count();
if ($count > 1 && $errorEmail = env('ERROR_EMAIL')) {