format_notice -> formatNotice
This commit is contained in:
parent
a70cceaddd
commit
671b0f4cd9
@ -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 . ']';
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user