diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:11:57 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | a3725de47b63da2e8b8cbc7e47b4b6e9d3fa142f (patch) | |
tree | 02e21685a0994ab385e9c8a51b9d89a3690ed820 /lib/implugin.php | |
parent | 463e9c10d1c41b324ada5d6d14c079a11460f581 (diff) |
handle_incoming -> handleIncoming
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 25c3e96f9..67b93047f 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -106,7 +106,7 @@ abstract class ImPlugin extends Plugin /** * receive a raw message * Raw IM data is taken from the incoming queue, and passed to this function. - * It should parse the raw message and call handle_incoming() + * It should parse the raw message and call handleIncoming() * * Returning false may CAUSE REPROCESSING OF THE QUEUE ITEM, and should * be used for temporary failures only. For permanent failures such as @@ -436,7 +436,7 @@ abstract class ImPlugin extends Plugin * * @param boolean success */ - protected function handle_incoming($from, $notice_text) + protected function handleIncoming($from, $notice_text) { $user = $this->get_user($from); // For common_current_user to work |