]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
add some wrapper markup for bookmarklistitem
authorEvan Prodromou <evan@status.net>
Tue, 19 Apr 2011 21:56:23 +0000 (17:56 -0400)
committerEvan Prodromou <evan@status.net>
Tue, 19 Apr 2011 21:56:23 +0000 (17:56 -0400)
plugins/Bookmark/bookmarklistitem.php

index c4dcb7798f353ec3031c57b8518f6b90b242bd60..e4621114108980da7b34621ad9e53632fb2ec4f4 100644 (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');
     }
 }