threadednoticelistinlinerepeatsitem.php 321 B

1234567891011121314151617
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class ThreadedNoticeListInlineRepeatsItem extends ThreadedNoticeListRepeatsItem
  4. {
  5. function showStart()
  6. {
  7. $this->out->elementStart('div', array('class' => 'notice-repeats'));
  8. }
  9. function showEnd()
  10. {
  11. $this->out->elementEnd('div');
  12. }
  13. }