12345678910111213141516171819 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class SubscribersMiniListItem extends ProfileMiniListItem
- {
- public $widgetOpts;
- public $scoped;
- function linkAttributes()
- {
- $aAttrs = parent::linkAttributes();
- if (common_config('nofollow', 'subscribers')) {
- $aAttrs['rel'] .= ' nofollow';
- }
- return $aAttrs;
- }
- }
|