my $generic_query = "
SELECT
bugs.bug_id,
+ IFNULL(bugs.alias,''),
products.name,
bugs.version,
bugs.rep_platform,
my %bug;
my @row = FetchSQLData();
- foreach my $field ("bug_id", "product", "version", "rep_platform",
+ foreach my $field ("bug_id", "alias", "product", "version", "rep_platform",
"op_sys", "bug_status", "resolution", "priority",
"bug_severity", "component", "assigned_to", "reporter",
"bug_file_loc", "short_desc", "target_milestone",
<td>
<b>[% terms.Bug %]#:</b>
<a href="show_bug.cgi?id=[% bug.bug_id %]">[% bug.bug_id %]</a>
+ [% IF Param("usebugaliases") AND bug.alias %]
+ ([% bug.alias FILTER html %])
+ [% END %]
</td>
[% PROCESS cell attr = { description => "Product",
name => "product" } %]