aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_messenger.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2003-10-14 13:30:43 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2003-10-14 13:30:43 +0000
commit78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2 (patch)
tree791fbe0766dae943ed15e0e38a688901537361a1 /phpBB/includes/functions_messenger.php
parent038f43c3fd05bf9c1203e0eaae6ceb45b4a37f4a (diff)
downloadforums-78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2.tar
forums-78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2.tar.gz
forums-78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2.tar.bz2
forums-78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2.tar.xz
forums-78613ec07c2494f3c80fa3dc3acb3fab6d5d27c2.zip
opsie
git-svn-id: file:///svn/phpbb/trunk@4600 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r--phpBB/includes/functions_messenger.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php
index cafc703262..fea4b3767c 100644
--- a/phpBB/includes/functions_messenger.php
+++ b/phpBB/includes/functions_messenger.php
@@ -437,7 +437,7 @@ class queue
if (!$config['email_enable'])
{
unset($this->queue_data['email']);
- continue;
+ continue 2;
}
break;
@@ -445,7 +445,7 @@ class queue
if (!$config['jab_enable'])
{
unset($this->queue_data['jabber']);
- continue;
+ continue 2;
}
include_once($phpbb_root_path . 'includes/functions_jabber.'.$phpEx);
@@ -460,13 +460,13 @@ class queue
if (!$this->jabber->Connect())
{
messenger::error('JABBER', 'Could not connect to Jabber server');
- continue;
+ continue 2;
}
if (!$this->jabber->SendAuth())
{
messenger::error('JABBER', 'Could not authorise on Jabber server');
- continue;
+ continue 2;
}
$this->jabber->SendPresence(NULL, NULL, 'online');
break;
@@ -494,7 +494,7 @@ class queue
// 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']);
messenger::error('MAIL', $message);
- continue 2;
+ continue 3;
}
break;