diff --git a/lib/implugin.php b/lib/implugin.php index 25a6614c6a..9fad46c41f 100644 --- a/lib/implugin.php +++ b/lib/implugin.php @@ -285,7 +285,7 @@ abstract class ImPlugin extends Plugin * @return boolean success flag */ - function public_notice($notice) + function publicNotice($notice) { // Now, users who want everything diff --git a/lib/imqueuehandler.php b/lib/imqueuehandler.php index 9c48c7093c..9c35890c62 100644 --- a/lib/imqueuehandler.php +++ b/lib/imqueuehandler.php @@ -40,7 +40,7 @@ class ImQueueHandler extends QueueHandler $this->plugin->broadcastNotice($notice); if ($notice->is_local == Notice::LOCAL_PUBLIC || $notice->is_local == Notice::LOCAL_NONPUBLIC) { - $this->plugin->public_notice($notice); + $this->plugin->publicNotice($notice); } return true; }