diff options
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/reports.cgi b/reports.cgi index 68a00e6f0..d6a38c0ea 100755 --- a/reports.cgi +++ b/reports.cgi @@ -666,6 +666,9 @@ sub most_doomed_for_milestone { print "<center>\n<h1>"; if( $FORM{'product'} ne "-All-" ) { + SendSQL("SELECT defaultmilestone FROM products WHERE product = " . + SqlQuote($FORM{'product'})); + $ms = FetchOneColumn(); print "Most Doomed for $ms ($FORM{'product'})"; } else { print "Most Doomed for $ms"; @@ -785,6 +788,9 @@ sub most_recently_doomed { print "<center>\n<h1>"; if( $FORM{'product'} ne "-All-" ) { + SendSQL("SELECT defaultmilestone FROM products WHERE product = " . + SqlQuote($FORM{'product'})); + $ms = FetchOneColumn(); print "Most Recently Doomed ($FORM{'product'})"; } else { print "Most Recently Doomed"; |