]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
format_notice -> formatNotice
authorCraig Andrews <candrews@integralblue.com>
Tue, 31 Aug 2010 04:09:29 +0000 (00:09 -0400)
committerCraig Andrews <candrews@integralblue.com>
Fri, 3 Sep 2010 21:50:29 +0000 (17:50 -0400)
lib/implugin.php
plugins/Xmpp/XmppPlugin.php

index 84e0777b6d7d4fce95411fc67b33299300d9c6e7..97b3788e3a00b2f3cf40254a07bd21cfc085b6b9 100644 (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 . ']';
index 321496e7dee8427879157f0e9a78fece4aa55bde..10141b08d57bc2e32cb7cedbb8217e240bd604c9 100644 (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);