X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FEnjit%2Fenjitqueuehandler.php;h=284f29477c9782bce22117653f2341ad37ec15c5;hb=f5aba994b2ca6dbe9d4dfd83d615d7bc3dcf2982;hp=56fc396d1708fd4a72eb5ad8a8c5be5f9efa239e;hpb=0f1fc36a05c8d858827718255bef20e8d0c0d3f6;p=quix0rs-gnu-social.git diff --git a/plugins/Enjit/enjitqueuehandler.php b/plugins/Enjit/enjitqueuehandler.php index 56fc396d17..284f29477c 100644 --- a/plugins/Enjit/enjitqueuehandler.php +++ b/plugins/Enjit/enjitqueuehandler.php @@ -23,7 +23,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { /** * Queue handler for watching new notices and posting to enjit. - * @fixme is this actually being used/functional atm? + * @todo FIXME: Is this actually being used/functional atm? */ class EnjitQueueHandler extends QueueHandler { @@ -45,7 +45,7 @@ class EnjitQueueHandler extends QueueHandler } # - # Build an Atom message from the notice + // Build an Atom message from the notice # $noticeurl = common_local_url('shownotice', array('notice' => $notice->id)); $msg = $profile->nickname . ': ' . $notice->content; @@ -73,7 +73,7 @@ class EnjitQueueHandler extends QueueHandler ); # - # POST the message to $config['enjit']['apiurl'] + // POST the message to $config['enjit']['apiurl'] # $request = HTTPClient::start(); $response = $request->post($url, null, $data);