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

View File

@ -554,6 +554,7 @@ class BookmarkPlugin extends MicroAppPlugin
foreach ($replies as $reply) {
$other = Profile::staticGet('id', $reply);
if (!empty($other)) {
$out->elementStart('li');
$out->element('a', array('rel' => 'tag',
'href' => $other->profileurl,
@ -562,6 +563,7 @@ class BookmarkPlugin extends MicroAppPlugin
$out->elementEnd('li');
$out->text(' ');
}
}
foreach ($tags as $tag) {
$out->elementStart('li');