mirror of
https://github.com/friendica/friendica
synced 2025-05-06 15:04:10 +02:00
Review
updates based on review.
This commit is contained in:
parent
2bbfc0640f
commit
547e24b443
2 changed files with 4 additions and 7 deletions
|
@ -83,9 +83,8 @@ class FKOAuthDataStore extends OAuthDataStore
|
|||
*/
|
||||
public static function lookup_nonce($consumer, $token, $nonce, $timestamp)
|
||||
{
|
||||
$s = dba::select('tokens', array('id', 'secret'), array('client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp));
|
||||
$r = dba::inArray($s);
|
||||
|
||||
$r = dba::select('tokens', ['id', 'secret'], ['client_id' => $consumer->key, 'id' => $nonce, 'expires' => $timestamp], ['limit' => 1]);
|
||||
|
||||
if (DBM::is_result($r)) {
|
||||
return new OAuthToken($r[0]['id'], $r[0]['secret']);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue