]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/Share/lib/threadednoticelistinlinerepeatsitem.php
Merge branch 'apiaccountregister_event_branch' into 'nightly'
[quix0rs-gnu-social.git] / plugins / Share / lib / threadednoticelistinlinerepeatsitem.php
1 <?php
2
3 if (!defined('GNUSOCIAL')) { exit(1); }
4
5 class ThreadedNoticeListInlineRepeatsItem extends ThreadedNoticeListRepeatsItem
6 {
7     function showStart()
8     {
9         $this->out->elementStart('div', array('class' => 'notice-repeats'));
10     }
11
12     function showEnd()
13     {
14         $this->out->elementEnd('div');
15     }
16 }