updates based on review.
This commit is contained in:
Adam Magness 2017-12-04 16:33:10 -05:00
parent 2bbfc0640f
commit 547e24b443
2 changed files with 4 additions and 7 deletions

View file

@ -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']);
}