git-svn-id: file:///svn/phpbb/trunk@4600 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2003-10-14 13:30:43 +00:00
parent 038f43c3fd
commit 78613ec07c

View file

@ -437,7 +437,7 @@ class queue
if (!$config['email_enable']) if (!$config['email_enable'])
{ {
unset($this->queue_data['email']); unset($this->queue_data['email']);
continue; continue 2;
} }
break; break;
@ -445,7 +445,7 @@ class queue
if (!$config['jab_enable']) if (!$config['jab_enable'])
{ {
unset($this->queue_data['jabber']); unset($this->queue_data['jabber']);
continue; continue 2;
} }
include_once($phpbb_root_path . 'includes/functions_jabber.'.$phpEx); include_once($phpbb_root_path . 'includes/functions_jabber.'.$phpEx);
@ -460,13 +460,13 @@ class queue
if (!$this->jabber->Connect()) if (!$this->jabber->Connect())
{ {
messenger::error('JABBER', 'Could not connect to Jabber server'); messenger::error('JABBER', 'Could not connect to Jabber server');
continue; continue 2;
} }
if (!$this->jabber->SendAuth()) if (!$this->jabber->SendAuth())
{ {
messenger::error('JABBER', 'Could not authorise on Jabber server'); messenger::error('JABBER', 'Could not authorise on Jabber server');
continue; continue 2;
} }
$this->jabber->SendPresence(NULL, NULL, 'online'); $this->jabber->SendPresence(NULL, NULL, 'online');
break; break;
@ -494,7 +494,7 @@ class queue
// Logging instead of displaying!? // Logging instead of displaying!?
$message = 'Method: [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $err_msg . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']); $message = 'Method: [ ' . (($config['smtp_delivery']) ? 'SMTP' : 'PHP') . ' ]<br /><br />' . $err_msg . '<br /><br /><u>CALLING PAGE</u><br /><br />' . ((!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : $_ENV['PHP_SELF']);
messenger::error('MAIL', $message); messenger::error('MAIL', $message);
continue 2; continue 3;
} }
break; break;