From: Craig Andrews Date: Tue, 31 Aug 2010 04:09:29 +0000 (-0400) Subject: format_notice -> formatNotice X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=671b0f4cd99b330dc0fef1627f112dc765ff07b3;p=quix0rs-gnu-social.git format_notice -> formatNotice --- diff --git a/lib/implugin.php b/lib/implugin.php index 84e0777b6d..97b3788e3a 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -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 . ']'; diff --git a/plugins/Xmpp/XmppPlugin.php b/plugins/Xmpp/XmppPlugin.php index 321496e7de..10141b08d5 100644 --- a/plugins/Xmpp/XmppPlugin.php +++ b/plugins/Xmpp/XmppPlugin.php @@ -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);