17 lines
321 B
PHP
17 lines
321 B
PHP
<?php
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
class ThreadedNoticeListInlineRepeatsItem extends ThreadedNoticeListRepeatsItem
|
|
{
|
|
function showStart()
|
|
{
|
|
$this->out->elementStart('div', array('class' => 'notice-repeats'));
|
|
}
|
|
|
|
function showEnd()
|
|
{
|
|
$this->out->elementEnd('div');
|
|
}
|
|
}
|