]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - lib/imqueuehandler.php
Opps, PEAR sucks. Need to call find() before fetch() ... :-(
[quix0rs-gnu-social.git] / lib / imqueuehandler.php
index b42d8e7c0b8d421160c02ff72f4c69e939ab0846..9c35890c62c47d9bae54903c7b321b687e7f49c8 100644 (file)
@@ -37,10 +37,10 @@ class ImQueueHandler extends QueueHandler
      */
     function handle($notice)
     {
-        $this->plugin->broadcast_notice($notice);
+        $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;
     }