We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c85e512 commit 1cb8f45Copy full SHA for 1cb8f45
lib/cache/sfMemcacheCache.class.php
@@ -60,7 +60,7 @@ public function initialize($options = array())
60
foreach ($this->getOption('servers') as $server)
61
{
62
$port = isset($server['port']) ? $server['port'] : 11211;
63
- if (!$this->memcache->addserver($server['host'], $port, isset($server['persistent']) ? $server['persistent'] : true))
+ if (!$this->memcache->addServer($server['host'], $port, isset($server['persistent']) ? $server['persistent'] : true))
64
65
throw new sfInitializationException(sprintf('Unable to connect to the memcache server (%s:%s).', $server['host'], $port));
66
}
0 commit comments