summaryrefslogtreecommitdiff
path: root/plugins/Irc/IrcPlugin.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-08-31 00:05:03 -0400
committerCraig Andrews <candrews@integralblue.com>2010-09-03 17:50:28 -0400
commite7a026091c97c2a9675987492c315ea3a6e09fff (patch)
tree81ed23cddeb5823938bfb53830b48821e38bbda7 /plugins/Irc/IrcPlugin.php
parentb05ab5fc85b320430be9cfe10bf76701c75fc903 (diff)
enqueue_outgoing_raw -> enqueueOutgoingRaw
Diffstat (limited to 'plugins/Irc/IrcPlugin.php')
-rw-r--r--plugins/Irc/IrcPlugin.php4
1 files changed, 2 insertions, 2 deletions
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,