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

View file

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