diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:09:29 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | 671b0f4cd99b330dc0fef1627f112dc765ff07b3 (patch) | |
tree | 79826eedf2470eccea8a3e5ad84d0e86b000733b /lib/implugin.php | |
parent | a70cceadddef24dd7ca79e5809bdfc8c263d105f (diff) |
format_notice -> formatNotice
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 84e0777b6..97b3788e3 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -88,7 +88,7 @@ abstract class ImPlugin extends Plugin */ function sendNotice($screenname, $notice) { - return $this->sendMessage($screenname, $this->format_notice($notice)); + return $this->sendMessage($screenname, $this->formatNotice($notice)); } /** @@ -371,7 +371,7 @@ abstract class ImPlugin extends Plugin * @return string plain-text version of the notice, with user nickname prefixed */ - function format_notice($notice) + function formatNotice($notice) { $profile = $notice->getProfile(); return $profile->nickname . ': ' . $notice->content . ' [' . $notice->id . ']'; |