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
2f21f4f1
Commit
2f21f4f1
authored
Nov 10, 2002
by
bbaetz%student.usyd.edu.au
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 179238 - searching by commenter is ignored if you do 'exact' or
'contains' r, a=myk
parent
2230afc9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
Search.pm
Bugzilla/Search.pm
+4
-4
No files found.
Bugzilla/Search.pm
View file @
2f21f4f1
...
...
@@ -190,7 +190,10 @@ sub init {
if
(
my
$list
=
$self
->
ListIDsForEmail
(
$type
,
$email
))
{
my
$table
=
"longdescs_email_$id"
;
push
(
@supptables
,
"LEFT JOIN longdescs $table ON bugs.bug_id = $table.bug_id AND $table.who IN($list)"
);
push
(
@clist
,
"$table.who"
,
'isnotnull'
);
push
(
@wherepart
,
"$table.who IS NOT NULL"
);
# push something into @clist so that we don't trigger
# the missing_email_type error below
push
(
@clist
,
'noop'
);
}
else
{
my
$table
=
"longdescs_email_$id"
;
push
(
@supptables
,
"longdescs $table"
);
...
...
@@ -600,9 +603,6 @@ sub init {
",lessthan"
=>
sub
{
$term
=
"$ff < $q"
;
},
",isnotnull"
=>
sub
{
$term
=
"$ff IS NOT NULL"
;
},
",greaterthan"
=>
sub
{
$term
=
"$ff > $q"
;
},
...
...
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