Index: /branches/release-36/lib/MT/Template/ContextHandlers.pm
===================================================================
--- /branches/release-36/lib/MT/Template/ContextHandlers.pm (revision 2103)
+++ /branches/release-36/lib/MT/Template/ContextHandlers.pm (revision 2108)
@@ -5524,5 +5524,4 @@
         }
     }
-    return q() unless $cmntr->url;
     my $link = $cmntr->url;
     my $static_path = _hdlr_static_path($ctx);
@@ -5530,8 +5529,11 @@
     unless ($logo) {
         my $root_url = $static_path . "images";
-        $root_url =~ s|/$||;
         $logo = "$root_url/nav-commenters.gif";
     }
-    qq{<a class="commenter-profile" href=\"$link\"><img alt=\"Author Profile Page\" src=\"$logo\" width=\"16\" height=\"16\" /></a>};
+    my $result = qq{<img alt=\"Author Profile Page\" src=\"$logo\" width=\"16\" height=\"16\" />};
+    if ($link) {
+        $result = qq{<a class="commenter-profile" href=\"$link\">$result</a>};
+    }
+    return $result;
 }
 
