format_notice -> formatNotice

This commit is contained in:
Craig Andrews 2010-08-31 00:09:29 -04:00
parent a70cceaddd
commit 671b0f4cd9
2 changed files with 3 additions and 3 deletions

View File

@ -88,7 +88,7 @@ abstract class ImPlugin extends Plugin
*/
function sendNotice($screenname, $notice)
{
return $this->sendMessage($screenname, $this->format_notice($notice));
return $this->sendMessage($screenname, $this->formatNotice($notice));
}
/**
@ -371,7 +371,7 @@ abstract class ImPlugin extends Plugin
* @return string plain-text version of the notice, with user nickname prefixed
*/
function format_notice($notice)
function formatNotice($notice)
{
$profile = $notice->getProfile();
return $profile->nickname . ': ' . $notice->content . ' [' . $notice->id . ']';

View File

@ -318,7 +318,7 @@ class XmppPlugin extends ImPlugin
function sendNotice($screenname, $notice)
{
$msg = $this->format_notice($notice);
$msg = $this->formatNotice($notice);
$entry = $this->format_entry($notice);
$this->queuedConnection()->message($screenname, $msg, 'chat', null, $entry);