Commit 8abd32b0 authored by terry%mozilla.org's avatar terry%mozilla.org

Fixed links off of 'Most doomed' reports to only list bugs that match the…

Fixed links off of 'Most doomed' reports to only list bugs that match the product we're reporting about.
parent a39343c1
......@@ -648,7 +648,11 @@ FIN
print "<TR><TD>\n";
SendSQL("select login_name from profiles where userid=$person");
my $login_name= FetchSQLData();
print("<A HREF=\"buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&target_milestone=$ms&assigned_to=$login_name\">\n");
print("<A HREF=\"buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&target_milestone=$ms&assigned_to=$login_name");
if( $::FORM{'product'} ne "-All-" ) {
print "&product=" . url_quote($::FORM{'product'});
}
print("\">\n");
print("$bugsperperson{$person} bugs and features");
print("</A>");
print(" for \n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment