Merge pull request #741 from JonnyTischbein/catavatar_regis_aproval

Apply CatAvatar when submiting aproval - fix #5779 in friendica
This commit is contained in:
Michael Vogel 2018-09-30 21:24:52 +00:00 committed by GitHub
commit 883a32a26f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ function catavatar_content(App $a)
$size = intval($a->argv[2]);
}
$condition = ['uid' => $uid, 'blocked' => false,
$condition = ['uid' => $uid,
'account_expired' => false, 'account_removed' => false];
$user = DBA::selectFirst('user', ['email'], $condition);