summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-05-21 07:59:34 +0200
committerByron Jones <bjones@mozilla.com>2013-05-21 07:59:34 +0200
commita2062da6482fa958a58a7891fc528376c3618be1 (patch)
tree4471c05fc32f302ff6006be599048a2957982ddd /Bugzilla/Search.pm
parent09a62c23f05df3caacd2745d276b846a326be904 (diff)
parent0b1e410c81430711a602adc56e4fc7667d1c841e (diff)
downloadbugzilla-a2062da6482fa958a58a7891fc528376c3618be1.tar.gz
bugzilla-a2062da6482fa958a58a7891fc528376c3618be1.tar.xz
merge with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index f3b698d0d..a27d3fe64 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -780,7 +780,7 @@ sub _sql {
my ($self) = @_;
return $self->{sql} if $self->{sql};
my $dbh = Bugzilla->dbh;
-
+
my ($joins, $clause) = $self->_charts_to_conditions();
if (!$clause->as_string
@@ -2485,9 +2485,9 @@ sub _content_matches {
my ($chart_id, $joins, $fields, $operator, $value) =
@$args{qw(chart_id joins fields operator value)};
my $dbh = Bugzilla->dbh;
-
+
# "content" is an alias for columns containing text for which we
- # can search a full-text index and retrieve results by relevance,
+ # can search a full-text index and retrieve results by relevance,
# currently just bug comments (and summaries to some degree).
# There's only one way to search a full-text index, so we only
# accept the "matches" operator, which is specific to full-text