diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:21:51 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | c54ef9b8b646c244a679527ff886ba3abfc92c61 (patch) | |
tree | 19efbbe5530697e727f806d65d63c2c5ad48c3b5 /lib/implugin.php | |
parent | d68914e4f3a5844c19396a94e3ae41895a36e9a2 (diff) |
is_otr -> isOtr
Diffstat (limited to 'lib/implugin.php')
-rw-r--r-- | lib/implugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/implugin.php b/lib/implugin.php index f08fef6cd..f4504f525 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -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 { |