misunderstood host versus server
darcs-hash:20080626080626-34904-e6783597cc1317894d9f6a301edf3ef69c529ce9.gz
This commit is contained in:
parent
85fd47aa52
commit
6910737760
|
@ -40,14 +40,14 @@ function jabber_normalize_jid($jid) {
|
|||
function jabber_connect($resource=NULL, $status=NULL) {
|
||||
static $conn = NULL;
|
||||
if (!$conn) {
|
||||
$conn = new XMPP(common_config('xmpp', 'server'),
|
||||
common_config('xmpp', 'port'),
|
||||
$conn = new XMPP(common_config('xmpp', 'host') ?
|
||||
common_config('xmpp', 'host') :
|
||||
common_config('xmpp', 'server'),
|
||||
common_config('xmpp', 'port'),
|
||||
common_config('xmpp', 'user'),
|
||||
common_config('xmpp', 'password'),
|
||||
($resource) ? $resource :
|
||||
common_config('xmpp', 'resource'),
|
||||
common_config('xmpp', 'host') ?
|
||||
common_config('xmpp', 'host') :
|
||||
common_config('xmpp', 'server'));
|
||||
|
||||
if (!$conn) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user