From: Evan Prodromou Date: Tue, 19 Apr 2011 21:56:23 +0000 (-0400) Subject: add some wrapper markup for bookmarklistitem X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6ee2adee4cba4168be3ed2c42b0ec266f0453536;p=quix0rs-gnu-social.git add some wrapper markup for bookmarklistitem --- diff --git a/plugins/Bookmark/bookmarklistitem.php b/plugins/Bookmark/bookmarklistitem.php index c4dcb7798f..e462111410 100644 --- a/plugins/Bookmark/bookmarklistitem.php +++ b/plugins/Bookmark/bookmarklistitem.php @@ -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'); } }