diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:01:55 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:28 -0400 |
commit | 6a848bcc8ac37066f7c4941132195d2d67d3b376 (patch) | |
tree | 15931655ea106c8775d244afe80bfb21b41a1d8e /lib/implugin.php | |
parent | 326258bfef7282509d719238234038d0f6a8d3ff (diff) |
send_message -> sendMessage
Diffstat (limited to 'lib/implugin.php')
-rw-r--r-- | lib/implugin.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/implugin.php b/lib/implugin.php index dafb8a416..cbf10d391 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -88,7 +88,7 @@ abstract class ImPlugin extends Plugin */ function send_notice($screenname, $notice) { - return $this->send_message($screenname, $this->format_notice($notice)); + return $this->sendMessage($screenname, $this->format_notice($notice)); } /** @@ -101,7 +101,7 @@ abstract class ImPlugin extends Plugin * * @return boolean success value */ - abstract function send_message($screenname, $body); + abstract function sendMessage($screenname, $body); /** * receive a raw message @@ -249,7 +249,7 @@ abstract class ImPlugin extends Plugin protected function send_from_site($screenname, $msg) { $text = '['.common_config('site', 'name') . '] ' . $msg; - $this->send_message($screenname, $text); + $this->sendMessage($screenname, $text); } /** @@ -271,7 +271,7 @@ abstract class ImPlugin extends Plugin 'or if you didn\'t request this confirmation, just ignore this message.'), $user->nickname, common_config('site', 'name'), $this->getDisplayName(), common_local_url('confirmaddress', array('code' => $code))); - return $this->send_message($screenname, $body); + return $this->sendMessage($screenname, $body); } /** |