handle_incoming -> handleIncoming

This commit is contained in:
Craig Andrews
2010-08-31 00:11:57 -04:00
parent 463e9c10d1
commit a3725de47b
5 changed files with 7 additions and 7 deletions

View File

@@ -173,7 +173,7 @@ class MsnPlugin extends ImPlugin {
* @return true if processing completed, false if message should be reprocessed
*/
public function receiveRawMessage($data) {
$this->handle_incoming($data['sender'], $data['message']);
$this->handleIncoming($data['sender'], $data['message']);
return true;
}