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

index 9fad46c41fc06d5aa133b934ccb16684298b3284..f08fef6cd63e40c3628e80629a7f42176b871c9f 100644 (file)
@@ -402,7 +402,7 @@ abstract class ImPlugin extends Plugin
      * @param string $txt message text
      * @return boolean true if autoreply
      */
-    protected function is_autoreply($txt)
+    protected function isAutoreply($txt)
     {
         if (preg_match('/[\[\(]?[Aa]uto[-\s]?[Rr]e(ply|sponse)[\]\)]/', $txt)) {
             return true;
@@ -453,7 +453,7 @@ abstract class ImPlugin extends Plugin
         if ($this->handleCommand($user, $notice_text)) {
             common_log(LOG_INFO, "Command message by $from handled.");
             return;
-        } else if ($this->is_autoreply($notice_text)) {
+        } else if ($this->isAutoreply($notice_text)) {
             common_log(LOG_INFO, 'Ignoring auto reply from ' . $from);
             return;
         } else if ($this->is_otr($notice_text)) {
index 55645d92fd70490182e2168a11cf60346f12cec6..dc077eeabb05bcdc2635fb1e76df6ba84f883b56 100644 (file)
@@ -244,7 +244,7 @@ class IrcPlugin extends ImPlugin {
         if ($this->handle_channel_command($user, $channel, $notice_text)) {
             common_log(LOG_INFO, "Command message by $nick handled.");
             return;
-        } else if ($this->is_autoreply($notice_text)) {
+        } else if ($this->isAutoreply($notice_text)) {
             common_log(LOG_INFO, 'Ignoring auto reply from ' . $nick);
             return;
         } else if ($this->is_otr($notice_text)) {