public_notice -> publicNotice

This commit is contained in:
Craig Andrews 2010-08-31 00:17:23 -04:00
parent 00e21d4a6f
commit cce92e394b
2 changed files with 2 additions and 2 deletions

View File

@ -285,7 +285,7 @@ abstract class ImPlugin extends Plugin
* @return boolean success flag * @return boolean success flag
*/ */
function public_notice($notice) function publicNotice($notice)
{ {
// Now, users who want everything // Now, users who want everything

View File

@ -40,7 +40,7 @@ class ImQueueHandler extends QueueHandler
$this->plugin->broadcastNotice($notice); $this->plugin->broadcastNotice($notice);
if ($notice->is_local == Notice::LOCAL_PUBLIC || if ($notice->is_local == Notice::LOCAL_PUBLIC ||
$notice->is_local == Notice::LOCAL_NONPUBLIC) { $notice->is_local == Notice::LOCAL_NONPUBLIC) {
$this->plugin->public_notice($notice); $this->plugin->publicNotice($notice);
} }
return true; return true;
} }