diff options
author | Craig Andrews <candrews@integralblue.com> | 2010-08-31 00:17:23 -0400 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2010-09-03 17:50:29 -0400 |
commit | cce92e394b228087ce9aeab24ab857bb617ba3fb (patch) | |
tree | ddb34d24878e5c32051cc7a6c7ad4fff95f3a953 | |
parent | 00e21d4a6f8b24bf4418df0385cf74b2de5e77bc (diff) |
public_notice -> publicNotice
-rw-r--r-- | lib/implugin.php | 2 | ||||
-rw-r--r-- | lib/imqueuehandler.php | 2 |
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; } |