function showEnd()
 {
     $this->out->element('ul', 'notices threaded-replies xoxo');
     parent::showEnd();
 }
 function showEnd()
 {
     $threadActive = null;
     // unused here for now, but maybe in the future?
     if (Event::handle('StartShowThreadedNoticeTailItems', array($this, $this->notice, &$threadActive))) {
         // Repeats and Faves/Likes are handled in plugins.
         Event::handle('EndShowThreadedNoticeTailItems', array($this, $this->notice, &$threadActive));
     }
     parent::showEnd();
 }
 function showEnd()
 {
     $item = new ThreadedNoticeListInlineFavesItem($this->notice, $this->out);
     $hasFaves = $item->show();
     parent::showEnd();
 }