Index: abuse.module
===================================================================
--- abuse.module	(revision 104)
+++ abuse.module	(working copy)
@@ -315,9 +315,9 @@
 function abuse_link($type, $object, $teaser = FALSE) {
   global $user;
   $links = array();
-  if ($object && $user && $user->uid == $object->uid) {
-    // Don't want user to flag their own content
-    return $$links;
+  // Don't want users to flag their own content, but anonymous users will be able to flag other anonymous content.
+  if ($object && $user->uid != 0 && $user->uid == $object->uid) {
+    return $links;
   }
   if ($type == 'node' && !$teaser) {
     if (user_access(ADMINISTER_ABUSE_REPORTS) && variable_get(ABUSE_CONTENT_NODE_TYPE . $object->type, 0)) {
