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
fed8e66b
Commit
fed8e66b
authored
Aug 22, 2008
by
mkanat%bugzilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a test failure caused by the bug-columns hook.
parent
04ed105c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
Bug.pm
Bugzilla/Bug.pm
+3
-4
No files found.
Bugzilla/Bug.pm
View file @
fed8e66b
...
...
@@ -73,8 +73,7 @@ sub DB_COLUMNS {
Bugzilla
->
active_custom_fields
;
my
@custom_names
=
map
{
$_
->
name
}
@custom
;
my
@columns
=
qw(
my
@columns
=
(
qw(
alias
assigned_to
bug_file_loc
...
...
@@ -102,9 +101,9 @@ sub DB_COLUMNS {
'reporter AS reporter_id'
,
$dbh
->
sql_date_format
(
'creation_ts'
,
'%Y.%m.%d %H:%i'
)
.
' AS creation_ts'
,
$dbh
->
sql_date_format
(
'deadline'
,
'%Y-%m-%d'
)
.
' AS deadline'
,
@custom_names
;
@custom_names
)
;
Bugzilla::Hook::
process
(
"bug-columns"
,
{
'columns'
=>
\
@columns
}
);
Bugzilla::Hook::
process
(
"bug-columns"
,
{
columns
=>
\
@columns
}
);
return
@columns
;
}
...
...
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