diff options
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r-- | phpBB/includes/functions_messenger.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index ec4b4a1fd0..74c3037bf0 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -394,7 +394,7 @@ class messenger foreach ($addresses as $address) { - $this->jabber->send_message($address, 'normal', NULL, array('body' => $msg)); + $this->jabber->send_message($address, 'normal', NULL, array('body' => $this->msg)); } sleep(1); @@ -528,6 +528,7 @@ class queue for ($i = 0; $i < $num_items; $i++) { + // Make variables available... extract(array_shift($this->queue_data[$object]['data'])); switch ($object) |