Bookmarks more robust to missing profiles

This commit is contained in:
Evan Prodromou 2011-04-06 23:47:05 -04:00
parent f9dc2fc0ab
commit bf39c95795
1 changed files with 9 additions and 7 deletions

View File

@ -554,13 +554,15 @@ class BookmarkPlugin extends MicroAppPlugin
foreach ($replies as $reply) {
$other = Profile::staticGet('id', $reply);
$out->elementStart('li');
$out->element('a', array('rel' => 'tag',
'href' => $other->profileurl,
'title' => $other->getBestName()),
sprintf('for:%s', $other->nickname));
$out->elementEnd('li');
$out->text(' ');
if (!empty($other)) {
$out->elementStart('li');
$out->element('a', array('rel' => 'tag',
'href' => $other->profileurl,
'title' => $other->getBestName()),
sprintf('for:%s', $other->nickname));
$out->elementEnd('li');
$out->text(' ');
}
}
foreach ($tags as $tag) {