Project

General

Profile

Bug #19673 ยป 9884.diff

Administrator Admin, 2008-12-03 21:25

View differences:

t3lib/cache/backend/class.t3lib_cache_backend_memcached.php (working copy)
}
foreach ($this->servers as $serverConf) {
$conf = explode(':',$serverConf, 2);
$this->memcache->addServer($conf[0], $conf[1]);
if (substr($serverConf, 0, 7) == 'unix://') {
$this->memcache->connect($serverConf, 0);
}
else {
$conf = explode(':',$serverConf, 2);
$this->memcache->connect($conf[0], $conf[1]);
}
}
}
    (1-1/1)