]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2002-02-01 19:04:31 by joy]
authorjoy <>
Sat, 2 Feb 2002 03:04:31 +0000 (19:04 -0800)
committerjoy <>
Sat, 2 Feb 2002 03:04:31 +0000 (19:04 -0800)
link to the submitter's web page, patch from Matt Kraai

cgi/bugreport.cgi
cgi/common.pl

index 0fd8ba38fb129607e716a90782ce445f80c7bd96..7438a2f8bd8bbb33ede670afdefb5ccec438ab47 100755 (executable)
@@ -59,7 +59,8 @@ $indexentry .= $showseverity;
 $indexentry .= "Package: <A HREF=\"" . pkgurl($status{package}) . "\">"
            .htmlsanit($status{package})."</A>;\n";
 
-$indexentry .= "Reported by: ".htmlsanit($status{originator});
+$indexentry .= "Reported by: <a href=\"" . submitterurl($status{originator})
+               . "\">" . htmlsanit($status{originator}) . "</a>";
 $indexentry .= ";\nTags: <strong>"
                . htmlsanit(join(", ", sort(split(/\s+/, $status{tags}))))
                . "</strong>"
index 4ab70d5eb1ab58ce015dc254ececda6c5bb5383d..b9b9a786828922ade0732873f646cb4278ed3e32 100644 (file)
@@ -131,7 +131,8 @@ sub htmlindexentrystatus {
                . "<strong>" . htmlsanit($status{"package"}) . "</strong></a>;\n"
                if (length($status{"package"}));
     $result .= $showseverity;
-    $result .= "Reported by: " . htmlsanit($status{originator});
+    $result .= "Reported by: <a href=\"" . submitterurl($status{originator})
+               . "\">" . htmlsanit($status{originator}) . "</a>";
     $result .= ";\nTags: <strong>" 
                 . htmlsanit(join(", ", sort(split(/\s+/, $status{tags}))))
                 . "</strong>"