add a couple of FIXME comments

This commit is contained in:
Evan Prodromou 2010-02-16 10:18:23 -05:00
parent 5a357d5399
commit 813451c9f9
1 changed files with 5 additions and 0 deletions

View 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();