diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-13 21:24:02 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-13 21:24:02 -0800 |
commit | cb962ed4755f213042f72580180908033ef3276e (patch) | |
tree | 37f4b8ce069152514d61f0b3b8069968e5f74f09 /plugins | |
parent | 255f49067d4da5fafc3c409ef7dd509362751fb5 (diff) |
queue daemon fixes: path fix for xmpp, suppress warning in memcached init
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/MemcachePlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MemcachePlugin.php b/plugins/MemcachePlugin.php index fbc2802f7..bc7fd9076 100644 --- a/plugins/MemcachePlugin.php +++ b/plugins/MemcachePlugin.php @@ -166,7 +166,7 @@ class MemcachePlugin extends Plugin if (is_array($this->servers)) { foreach ($this->servers as $server) { - list($host, $port) = explode(';', $server); + list($host, $port) = @explode(';', $server); if (empty($port)) { $port = 11211; } |