mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 06:51:08 +02:00
oi^2
git-svn-id: file:///svn/phpbb/trunk@7689 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -54,7 +54,7 @@ class acp_jabber
|
|||||||
// Is this feature enabled? Then try to establish a connection
|
// Is this feature enabled? Then try to establish a connection
|
||||||
if ($jab_enable)
|
if ($jab_enable)
|
||||||
{
|
{
|
||||||
$jabber = new jabber($jab_host, $jab_port, $jab_username, $jab_password);
|
$jabber = new jabber($jab_host, $jab_port, $jab_username, $jab_password, $jab_use_ssl);
|
||||||
|
|
||||||
if (!$jabber->connect())
|
if (!$jabber->connect())
|
||||||
{
|
{
|
||||||
|
@@ -458,7 +458,7 @@ class messenger
|
|||||||
if (!$use_queue)
|
if (!$use_queue)
|
||||||
{
|
{
|
||||||
include_once($phpbb_root_path . 'includes/functions_jabber.' . $phpEx);
|
include_once($phpbb_root_path . 'includes/functions_jabber.' . $phpEx);
|
||||||
$this->jabber = new jabber($config['jab_host'], $config['jab_port'], $config['jab_username'], $config['jab_password']);
|
$this->jabber = new jabber($config['jab_host'], $config['jab_port'], $config['jab_username'], $config['jab_password'], $config['jab_use_ssl']);
|
||||||
|
|
||||||
if (!$this->jabber->connect())
|
if (!$this->jabber->connect())
|
||||||
{
|
{
|
||||||
@@ -590,7 +590,7 @@ class queue
|
|||||||
}
|
}
|
||||||
|
|
||||||
include_once($phpbb_root_path . 'includes/functions_jabber.'.$phpEx);
|
include_once($phpbb_root_path . 'includes/functions_jabber.'.$phpEx);
|
||||||
$this->jabber = new jabber($config['jab_host'], $config['jab_port'], $config['jab_username'], $config['jab_password']);
|
$this->jabber = new jabber($config['jab_host'], $config['jab_port'], $config['jab_username'], $config['jab_password'], $config['jab_use_ssl']);
|
||||||
|
|
||||||
if (!$this->jabber->connect())
|
if (!$this->jabber->connect())
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user