Skip to content

Commit

Permalink
Removing extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzo committed Mar 29, 2012
1 parent f105abd commit e6a87ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Cake/Cache/Engine/RedisEngine.php
Expand Up @@ -77,9 +77,9 @@ protected function _connect() {
try {
$this->_Redis = new Redis();
if (empty($this->settings['persistent'])) {
$return = $this->_Redis->connect($this->settings['server']);
$return = $this->_Redis->connect($this->settings['server']);
} else {
$return = $this->_Redis->pconnect($this->settings['server']);
$return = $this->_Redis->pconnect($this->settings['server']);
}
} catch (RedisException $e) {
return false;
Expand Down

0 comments on commit e6a87ba

Please sign in to comment.