From: Evan Prodromou <evan@status.net>
Date: Mon, 5 Apr 2010 15:17:51 +0000 (-0400)
Subject: use nofollow for group members list
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=16827a66bab59964f315d39a305ddac19a8f2f18;p=quix0rs-gnu-social.git

use nofollow for group members list
---

diff --git a/actions/groupmembers.php b/actions/groupmembers.php
index a16debd7b0..fb4e46dbc0 100644
--- a/actions/groupmembers.php
+++ b/actions/groupmembers.php
@@ -212,6 +212,7 @@ class GroupMemberListItem extends ProfileListItem
         }
 
     }
+
     function showGroupBlockForm()
     {
         $user = common_current_user();
@@ -224,7 +225,24 @@ class GroupMemberListItem extends ProfileListItem
             $bf->show();
             $this->out->elementEnd('li');
         }
+    }
+
+    function linkAttributes()
+    {
+        $aAttrs = parent::linkAttributes();
+
+        if (common_config('nofollow', 'members')) {
+            $aAttrs['rel'] .= ' nofollow';
+        }
+
+        return $aAttrs;
+    }
 
+    function homepageAttributes()
+    {
+        if (common_config('nofollow', 'members')) {
+            $aAttrs['rel'] = 'nofollow';
+        }
     }
 }