Merge pull request #4538 from MrPetovan/bug/4535-user-not-found

Fix missing logical not in admin/users
This commit is contained in:
Tobias Diekershoff 2018-03-03 15:36:54 +01:00 committed by GitHub
commit 8004a1bd93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1568,7 +1568,7 @@ function admin_page_users(App $a)
if ($a->argc > 2) {
$uid = $a->argv[3];
$user = dba::selectFirst('user', ['username', 'blocked'], ['uid' => $uid]);
if (DBM::is_result($user)) {
if (!DBM::is_result($user)) {
notice('User not found' . EOL);
goaway('admin/users');
return ''; // NOTREACHED