Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
25e79eb0
Commit
25e79eb0
authored
Aug 05, 2003
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 204560: display alias in long listing.
Fix by GavinS <bugzilla@chimpychompy.org>. r=myk, a=myk
parent
ee7c14dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
long_list.cgi
long_list.cgi
+2
-1
show-multiple.html.tmpl
template/en/default/bug/show-multiple.html.tmpl
+3
-0
No files found.
long_list.cgi
View file @
25e79eb0
...
...
@@ -44,6 +44,7 @@ my $cgi = Bugzilla->cgi;
my
$generic_query
=
"
SELECT
bugs.bug_id,
IFNULL(bugs.alias,''),
products.name,
bugs.version,
bugs.rep_platform,
...
...
@@ -82,7 +83,7 @@ foreach my $bug_id (split(/[:,]/, $buglist)) {
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"
,
...
...
template/en/default/bug/show-multiple.html.tmpl
View file @
25e79eb0
...
...
@@ -58,6 +58,9 @@
<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" } %]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment