diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-16 13:40:49 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-16 13:40:49 -0800 |
commit | 9dc9c404cf5082ea769fb0c1d13c55742e046849 (patch) | |
tree | b7b37627d97d49eea7b4157eb2ec91b278447dd9 /plugins | |
parent | aea83bbe152efd127338270561a1cc56c46df44d (diff) | |
parent | 775c63b654dacf733e7bef99cb9f6f07aa824854 (diff) |
Merge branch 'master' into 0.9.x
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MemcachePlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MemcachePlugin.php b/plugins/MemcachePlugin.php index 5214ab9c8..8c8b8da6d 100644 --- a/plugins/MemcachePlugin.php +++ b/plugins/MemcachePlugin.php @@ -170,8 +170,8 @@ class MemcachePlugin extends Plugin $servers = array($this->servers); } foreach ($servers as $server) { - if (strpos($server, ':') !== false) { - list($host, $port) = explode(':', $server); + if (strpos($server, ';') !== false) { + list($host, $port) = explode(';', $server); } else { $host = $server; $port = 11211; |