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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
9ddbd40c
Commit
9ddbd40c
authored
Mar 12, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 285678: NOT(integer) not supported by postgres
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=myk
parent
16eccfdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
CGI.pl
CGI.pl
+1
-1
editproducts.cgi
editproducts.cgi
+1
-1
No files found.
CGI.pl
View file @
9ddbd40c
...
@@ -304,7 +304,7 @@ sub GetBugActivity {
...
@@ -304,7 +304,7 @@ sub GetBugActivity {
if
(
Param
(
"insidergroup"
)
&&
!
UserInGroup
(
Param
(
'insidergroup'
)))
{
if
(
Param
(
"insidergroup"
)
&&
!
UserInGroup
(
Param
(
'insidergroup'
)))
{
$suppjoins
=
"LEFT JOIN attachments
$suppjoins
=
"LEFT JOIN attachments
ON attachments.attach_id = bugs_activity.attach_id"
;
ON attachments.attach_id = bugs_activity.attach_id"
;
$suppwhere
=
"AND
NOT(COALESCE(attachments.isprivate,0))"
;
$suppwhere
=
"AND
COALESCE(attachments.isprivate, 0) = 0"
;
}
}
my
$query
=
"
my
$query
=
"
SELECT COALESCE(fielddefs.description, bugs_activity.fieldid),
SELECT COALESCE(fielddefs.description, bugs_activity.fieldid),
...
...
editproducts.cgi
View file @
9ddbd40c
...
@@ -339,7 +339,7 @@ unless ($action) {
...
@@ -339,7 +339,7 @@ unless ($action) {
my
$query
=
"SELECT products.name,
my
$query
=
"SELECT products.name,
COALESCE(products.description,'') AS description,
COALESCE(products.description,'') AS description,
NOT(disallownew)
AS status,
disallownew = 0
AS status,
votesperuser, maxvotesperbug, votestoconfirm,
votesperuser, maxvotesperbug, votestoconfirm,
COUNT(bug_id) AS bug_count
COUNT(bug_id) AS bug_count
FROM products"
;
FROM products"
;
...
...
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