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
37993682
Commit
37993682
authored
Oct 26, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 171278 - component/product ids mean that you can't do change queries on
component/product r=gerv
parent
4888825a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
1 deletion
+14
-1
query.cgi
query.cgi
+14
-1
No files found.
query.cgi
View file @
37993682
...
@@ -281,8 +281,21 @@ shift @::legal_resolution;
...
@@ -281,8 +281,21 @@ shift @::legal_resolution;
# Another hack - this array contains "" for some reason. See bug 106589.
# Another hack - this array contains "" for some reason. See bug 106589.
$vars
->
{
'resolution'
}
=
\
@::legal_resolution
;
$vars
->
{
'resolution'
}
=
\
@::legal_resolution
;
my
@chfields
=
@::log_columns
;
my
@chfields
;
push
@chfields
,
"[Bug creation]"
;
push
@chfields
,
"[Bug creation]"
;
# This is what happens when you have variables whose definition depends
# on the DB schema, and then the underlying schema changes...
foreach
my
$val
(
@::log_columns
)
{
if
(
$val
eq
'product_id'
)
{
$val
=
'product'
;
}
elsif
(
$val
eq
'component_id'
)
{
$val
=
'component'
;
}
push
@chfields
,
$val
;
}
if
(
UserInGroup
(
Param
(
'timetrackinggroup'
)))
{
if
(
UserInGroup
(
Param
(
'timetrackinggroup'
)))
{
push
@chfields
,
"work_time"
;
push
@chfields
,
"work_time"
;
}
else
{
}
else
{
...
...
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