]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add a couple of FIXME comments
authorEvan Prodromou <evan@status.net>
Tue, 16 Feb 2010 15:18:23 +0000 (10:18 -0500)
committerEvan Prodromou <evan@status.net>
Tue, 16 Feb 2010 15:18:23 +0000 (10:18 -0500)
plugins/OStatus/OStatusPlugin.php

index 276ca1b3d0507a93c183ec174ab93887da1edd3c..3b1329d6c5d1ad2f926a7582c1f42041c6bc105c 100644 (file)
@@ -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 version="1.0" encoding="UTF-8" ?>';
                 $xml .= $notice->asAtomEntry();