From: Evan Prodromou Date: Tue, 5 Apr 2011 17:43:54 +0000 (-0400) Subject: include limited-scope class on bookmarks in output X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4397686c912f386cc4c1bc802232ef640afecd40;p=quix0rs-gnu-social.git include limited-scope class on bookmarks in output --- diff --git a/plugins/Bookmark/BookmarkPlugin.php b/plugins/Bookmark/BookmarkPlugin.php index a24f207720..daefa12c39 100644 --- a/plugins/Bookmark/BookmarkPlugin.php +++ b/plugins/Bookmark/BookmarkPlugin.php @@ -294,7 +294,11 @@ class BookmarkPlugin extends MicroAppPlugin $nb = Bookmark::getByNotice($nli->notice); if (!empty($nb)) { $id = (empty($nli->repeat)) ? $nli->notice->id : $nli->repeat->id; - $nli->out->elementStart('li', array('class' => 'hentry notice bookmark', + $class = 'hentry notice bookmark'; + if ($nli->notice->scope != 0 && $nli->notice->scope != 1) { + $class .= ' limited-scope'; + } + $nli->out->elementStart('li', array('class' => $class, 'id' => 'notice-' . $id)); Event::handle('EndOpenNoticeListItemElement', array($nli)); return false;