Index: flag_content.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flag_content/flag_content.module,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 flag_content.module
--- flag_content.module	10 Oct 2006 23:42:43 -0000	1.1.2.3
+++ flag_content.module	7 Dec 2006 22:38:24 -0000
@@ -90,16 +90,16 @@
         if (user_access(FLAG_CONTENT_PERM_ADD)) {
           if (!_flag_content_check($node->nid)) {
             // Not already flagged, flag it for admin
-            $links[] = l(t('flag as offensive'), "flag_content/add/$node->nid");
+            $links[] = l(t('flag as offensive'), "flag_content/add/$node->nid", array("rel"=>"nofollow"));
           }
           else {
             // If has admin privileges, show an unflag link
             if (user_access(FLAG_CONTENT_PERM_MANAGE)) {
-              $links[] = l(t('unflag'), "flag_content/unflag/$node->nid");
+              $links[] = l(t('unflag'), "flag_content/unflag/$node->nid", array("rel"=>"nofollow"));
             }
             else {
               // Otherwise just show it as flagged
-              $links[] = t('flagged as offensive');
+              $links[] = t('flagged as offensive', array("rel"=>"nofollow"));
             }
           }
         }
