Skip to content

Commit

Permalink
Fix typo in cache memcached storage (#12150)
Browse files Browse the repository at this point in the history
  • Loading branch information
csthomas authored and Michael Babker committed Sep 23, 2016
1 parent 57ce4a2 commit 92c2e12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/joomla/cache/storage/memcached.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ protected function getConnection()

$config = JFactory::getConfig();

$host = $config->get('memcache_server_host', 'localhost');
$port = $config->get('memcache_server_port', 11211);
$host = $config->get('memcached_server_host', 'localhost');
$port = $config->get('memcached_server_port', 11211);


// Create the memcache connection
// Create the memcached connection
if ($config->get('memcached_persist', true))
{
static::$_db = new Memcached($this->_hash);
Expand Down

0 comments on commit 92c2e12

Please sign in to comment.