1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- if (!defined('STATUSNET')) {
- exit(1);
- }
- require_once INSTALLDIR.'/lib/noticelist.php';
- class DoFollowListItem extends NoticeListItem
- {
-
- function showContent()
- {
-
- $this->out->elementStart('article', array('class' => 'e-content'));
- if (!empty($this->notice->rendered)) {
- $html = $this->notice->rendered;
- } else {
- $html = common_render_content($this->notice->content, $this->notice);
- }
- if (common_config('nofollow', 'external') == 'sometimes') {
-
-
- $html = preg_replace('/rel="(.*)nofollow ?/', 'rel="\1', $html);
- }
- $this->out->raw($html);
- $this->out->elementEnd('div');
- }
- }
|