Skip to content

Commit

Permalink
Reorder glue and array parameters
Browse files Browse the repository at this point in the history
Deprecated since 7.4 and an error in 8.0
  • Loading branch information
mrubinsk committed May 31, 2021
1 parent c49d399 commit 45939e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Horde/Memcache.php
Expand Up @@ -202,7 +202,7 @@ public function _init()

if (isset($this->_params['logger'])) {
$this->_logger = $this->_params['logger'];
$this->_logger->log('Connected to the following memcache servers:' . implode($this->_servers, ', '), 'DEBUG');
$this->_logger->log('Connected to the following memcache servers:' . implode(', ', $this->_servers), 'DEBUG');
}
}

Expand Down

0 comments on commit 45939e7

Please sign in to comment.