Plugin onAutoload replaces _ with / in lib paths, this renames some classes.

This commit is contained in:
Mikael Nordfeldth
2013-10-02 14:07:53 +02:00
parent 3e15bab965
commit ba5e90164c
10 changed files with 12 additions and 12 deletions

View File

@@ -390,7 +390,7 @@ class XmppPlugin extends ImPlugin
* Build a queue-proxied XMPP interface object. Any outgoing messages
* will be run back through us for enqueing rather than sent directly.
*
* @return Queued_XMPP
* @return QueuedXMPP
* @throws Exception if server settings are invalid.
*/
function queuedConnection(){
@@ -411,7 +411,7 @@ class XmppPlugin extends ImPlugin
throw new Exception(_m('You must specify a password in the configuration.'));
}
return new Queued_XMPP($this, $this->host ?
return new QueuedXMPP($this, $this->host ?
$this->host :
$this->server,
$this->port,