Skip to content

Commit

Permalink
[zend-auth] update zend-auth deps according to usage (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
smhg authored Feb 25, 2024
1 parent 78bcfa9 commit 3799d28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions packages/zend-auth/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
},
"suggest": {
"ext-hash": "Used in special situations or with special adapters",
"zf1s/zend-controller": "Used in special situations or with special adapters",
"zf1s/zend-db": "Used in special situations or with special adapters",
"zf1s/zend-http": "Used in special situations or with special adapters",
"zf1s/zend-ldap": "Used in special situations or with special adapters",
"zf1s/zend-openid": "Used in special situations or with special adapters",
"zf1s/zend-session": "Used in special situations or with special adapters"
Expand Down
4 changes: 2 additions & 2 deletions packages/zend-auth/library/Zend/Auth/Adapter/DbTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -472,9 +472,9 @@ protected function _authenticateCreateSelect()
protected function _authenticateQuerySelect(Zend_Db_Select $dbSelect)
{
try {
if ($this->_zendDb->getFetchMode() != Zend_DB::FETCH_ASSOC) {
if ($this->_zendDb->getFetchMode() != Zend_Db::FETCH_ASSOC) {
$origDbFetchMode = $this->_zendDb->getFetchMode();
$this->_zendDb->setFetchMode(Zend_DB::FETCH_ASSOC);
$this->_zendDb->setFetchMode(Zend_Db::FETCH_ASSOC);
}
$resultIdentities = $this->_zendDb->fetchAll($dbSelect);
if (isset($origDbFetchMode)) {
Expand Down

0 comments on commit 3799d28

Please sign in to comment.