Revert "Accept DbUserBackends with only one single user"

This reverts commit c8d065b3e0.

There's a PR on GitHub open that was contributed earlier than this fix. Thus giving credit to the PR's author.

refs #9739
This commit is contained in:
Eric Lippmann 2015-09-01 23:05:34 +02:00
parent 41ab03accb
commit d2a4b880b1
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ class DbUserBackend extends DbRepository implements UserBackendInterface, Inspec
$insp->write($this->ds->inspect());
try {
$users = $this->select()->where('is_active', true)->count();
if ($users >= 1) {
if ($users > 1) {
$insp->write(sprintf('%s active users', $users));
} else {
return $insp->error('0 active users', $users);