Issue 8557: We have to fetch only a single row

This commit is contained in:
Michael 2020-04-28 21:13:37 +00:00
parent 99ce487e1e
commit 1f9f321d54
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class Register
*/
public static function getPendingForUser(int $uid)
{
return DBA::selectToArray('pending-view', [], ['uid' => $uid]);
return DBA::select('pending-view', [], ['uid' => $uid, 'self' => true]);
}
/**