summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/Aim/AimPlugin.php2
-rw-r--r--plugins/Irc/IrcPlugin.php4
-rw-r--r--plugins/Msn/MsnPlugin.php2
-rw-r--r--plugins/Xmpp/Queued_XMPP.php2
4 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Aim/AimPlugin.php b/plugins/Aim/AimPlugin.php
index 231dc0b27..3f394a740 100644
--- a/plugins/Aim/AimPlugin.php
+++ b/plugins/Aim/AimPlugin.php
@@ -122,7 +122,7 @@ class AimPlugin extends ImPlugin
function sendMessage($screenname, $body)
{
$this->fake_aim->sendIm($screenname, $body);
- $this->enqueue_outgoing_raw($this->fake_aim->would_be_sent);
+ $this->enqueueOutgoingRaw($this->fake_aim->would_be_sent);
return true;
}
diff --git a/plugins/Irc/IrcPlugin.php b/plugins/Irc/IrcPlugin.php
index bebd0eaf3..87cd8f72c 100644
--- a/plugins/Irc/IrcPlugin.php
+++ b/plugins/Irc/IrcPlugin.php
@@ -193,7 +193,7 @@ class IrcPlugin extends ImPlugin {
$lines = explode("\n", $body);
foreach ($lines as $line) {
$this->fake_irc->doPrivmsg($screenname, $line);
- $this->enqueue_outgoing_raw(array('type' => 'message', 'prioritise' => 0, 'data' => $this->fake_irc->would_be_sent));
+ $this->enqueueOutgoingRaw(array('type' => 'message', 'prioritise' => 0, 'data' => $this->fake_irc->would_be_sent));
}
return true;
}
@@ -316,7 +316,7 @@ class IrcPlugin extends ImPlugin {
*/
public function checked_send_confirmation_code($screenname, $code, $user) {
$this->fake_irc->doPrivmsg('NickServ', 'INFO '.$screenname);
- $this->enqueue_outgoing_raw(
+ $this->enqueueOutgoingRaw(
array(
'type' => 'nickcheck',
'prioritise' => 1,
diff --git a/plugins/Msn/MsnPlugin.php b/plugins/Msn/MsnPlugin.php
index 68e57fa09..9912021d7 100644
--- a/plugins/Msn/MsnPlugin.php
+++ b/plugins/Msn/MsnPlugin.php
@@ -162,7 +162,7 @@ class MsnPlugin extends ImPlugin {
* @return boolean success value
*/
public function sendMessage($screenname, $body) {
- $this->enqueue_outgoing_raw(array('to' => $screenname, 'message' => $body));
+ $this->enqueueOutgoingRaw(array('to' => $screenname, 'message' => $body));
return true;
}
diff --git a/plugins/Xmpp/Queued_XMPP.php b/plugins/Xmpp/Queued_XMPP.php
index 73eff2246..24f542805 100644
--- a/plugins/Xmpp/Queued_XMPP.php
+++ b/plugins/Xmpp/Queued_XMPP.php
@@ -79,7 +79,7 @@ class Queued_XMPP extends XMPPHP_XMPP
*/
public function send($msg, $timeout=NULL)
{
- $this->plugin->enqueue_outgoing_raw($msg);
+ $this->plugin->enqueueOutgoingRaw($msg);
}
//@{