]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
is_otr -> isOtr
authorCraig Andrews <candrews@integralblue.com>
Tue, 31 Aug 2010 04:21:51 +0000 (00:21 -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 f08fef6cd63e40c3628e80629a7f42176b871c9f..f4504f52535c605c15d1a2175876f426002e9721 100644 (file)
@@ -418,7 +418,7 @@ abstract class ImPlugin extends Plugin
      * @param string $txt message text
      * @return boolean true if OTR
      */
-    protected function is_otr($txt)
+    protected function isOtr($txt)
     {
         if (preg_match('/^\?OTR/', $txt)) {
             return true;
@@ -456,7 +456,7 @@ abstract class ImPlugin extends Plugin
         } else if ($this->isAutoreply($notice_text)) {
             common_log(LOG_INFO, 'Ignoring auto reply from ' . $from);
             return;
-        } else if ($this->is_otr($notice_text)) {
+        } else if ($this->isOtr($notice_text)) {
             common_log(LOG_INFO, 'Ignoring OTR from ' . $from);
             return;
         } else {
index dc077eeabb05bcdc2635fb1e76df6ba84f883b56..7a53e5cbf5821af2101c3c2a995f71348c1c46fb 100644 (file)
@@ -247,7 +247,7 @@ class IrcPlugin extends ImPlugin {
         } else if ($this->isAutoreply($notice_text)) {
             common_log(LOG_INFO, 'Ignoring auto reply from ' . $nick);
             return;
-        } else if ($this->is_otr($notice_text)) {
+        } else if ($this->isOtr($notice_text)) {
             common_log(LOG_INFO, 'Ignoring OTR from ' . $nick);
             return;
         } else {