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:36 -0800 |
commit | b25deaacea75f2e565a58ea14aca19627f5cfa93 (patch) | |
tree | 6174d0ae7e39df787015ae3ebdffb1a784d8ad95 /plugins | |
parent | 35a2f8de4d46c403d6ca17695a8d040f003125c8 (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; } |