Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Fix Zend\Authentication db adapter for Zend\Db changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanDotPro committed Jun 22, 2012
4 parents 9b28224 + 49a871c + 4145ab4 + ff8e603 commit b0d3db4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapter/DbTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ protected function _authenticateQuerySelect(DbSelect $dbSelect)
$dbSelect->prepareStatement($this->_zendDb, $statement);
$resultSet = new ResultSet();
try {
$resultSet->setDataSource($statement->execute(array($this->_credential, $this->_identity)));
$resultSet->initialize($statement->execute(array($this->_credential, $this->_identity)));
$resultIdentities = $resultSet->toArray();
} catch (\Exception $e) {
throw new Exception\RuntimeException(
Expand Down

0 comments on commit b0d3db4

Please sign in to comment.