summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/implugin.php2
-rw-r--r--lib/imqueuehandler.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/implugin.php b/lib/implugin.php
index 25a6614c6..9fad46c41 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 9c48c7093..9c35890c6 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;
}