From: Evan Prodromou Date: Tue, 16 Feb 2010 15:18:23 +0000 (-0500) Subject: add a couple of FIXME comments X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=813451c9f9aac0690019d936dea2bf9d37ca6c13;p=quix0rs-gnu-social.git add a couple of FIXME comments --- diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 276ca1b3d0..3b1329d6c5 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -218,6 +218,9 @@ class OStatusPlugin extends Plugin $count = preg_match_all('/(\w+\.)*\w+@(\w+\.)*\w+(\w+\-\w+)*\.\w+/', $notice->content, $matches); if ($count) { foreach ($matches[0] as $webfinger) { + + // FIXME: look up locally first + // Check to see if we've got an actual webfinger $w = new Webfinger; @@ -238,6 +241,8 @@ class OStatusPlugin extends Plugin continue; } + // FIXME: this needs to go out in a queue handler + $xml = ''; $xml .= $notice->asAtomEntry();