12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- if (!defined('GNUSOCIAL') && !defined('STATUSNET')) { exit(1); }
- class PrimaryNoticeList extends NoticeList
- {
- public function show()
- {
- $this->out->elementStart('div', array('id' =>'notices_primary'));
- $total = parent::show();
- $this->out->elementEnd('div');
- return $total;
- }
- }
|