add some wrapper markup for bookmarklistitem

This commit is contained in:
Evan Prodromou 2011-04-19 17:56:23 -04:00
parent 1e2bd48c30
commit 6ee2adee4c
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,8 @@ class BookmarkListItem extends NoticeListItemAdapter
{
function showContent()
{
$this->out->elementStart('p', array('class' => 'entry-content'));
$notice = $this->nli->notice;
$out = $this->nli->out;
@ -123,5 +125,7 @@ class BookmarkListItem extends NoticeListItemAdapter
array('class' => 'bookmark-description'),
$nb->description);
}
$this->out->elementEnd('p');
}
}