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

index 97b3788e3a00b2f3cf40254a07bd21cfc085b6b9..25c3e96f97874533993bda0034da1da30908d34b 100644 (file)
@@ -384,7 +384,7 @@ abstract class ImPlugin extends Plugin
      * @param string $body message text
      * @return boolean true if the message was a command and was executed, false if it was not a command
      */
-    protected function handle_command($user, $body)
+    protected function handleCommand($user, $body)
     {
         $inter = new CommandInterpreter();
         $cmd = $inter->handle_command($user, $body);
@@ -450,7 +450,7 @@ abstract class ImPlugin extends Plugin
             common_log(LOG_WARNING, 'Message from unknown user ' . $from);
             return;
         }
-        if ($this->handle_command($user, $notice_text)) {
+        if ($this->handleCommand($user, $notice_text)) {
             common_log(LOG_INFO, "Command message by $from handled.");
             return;
         } else if ($this->is_autoreply($notice_text)) {