Skip to content

Commit e4f77b7

Browse files
Merge pull request #122 from luckyraul/master
Fix auth 1.10
2 parents 585c815 + efb6a47 commit e4f77b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cm/Cache/Backend/Redis.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ protected function _applyClientOptions(Credis_Client $client, $forceSelect = FAL
350350
}
351351

352352
if ($clientOptions->password) {
353-
$client->auth($clientOptions>password) or Zend_Cache::throwException('Unable to authenticate with the redis server.');
353+
$client->auth($clientOptions->password) or Zend_Cache::throwException('Unable to authenticate with the redis server.');
354354
}
355355

356356
// Always select database when persistent is used in case connection is re-used by other clients

0 commit comments

Comments
 (0)