groupblockedminilistitem.php 328 B

123456789101112131415161718
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class GroupBlockedMiniListItem extends ProfileMiniListItem
  4. {
  5. function linkAttributes()
  6. {
  7. $aAttrs = parent::linkAttributes();
  8. if (common_config('nofollow', 'members')) {
  9. $aAttrs['rel'] .= ' nofollow';
  10. }
  11. return $aAttrs;
  12. }
  13. }