handle_command -> handleCommand

This commit is contained in:
Craig Andrews 2010-08-31 00:11:22 -04:00
parent 671b0f4cd9
commit 463e9c10d1

View File

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