diff options
author | Simon Green <sgreen@redhat.com> | 2013-09-04 02:47:40 +0200 |
---|---|---|
committer | Simon Green <sgreen@redhat.com> | 2013-09-04 02:47:40 +0200 |
commit | 85b8753b59de091a4700ac6e192224c18e25d54d (patch) | |
tree | 92ea5e9658ce2a644a378877276b57ecd0950ee5 | |
parent | e8b8659344184e15d519fe5f499bbcc86094687f (diff) | |
download | bugzilla-85b8753b59de091a4700ac6e192224c18e25d54d.tar.gz bugzilla-85b8753b59de091a4700ac6e192224c18e25d54d.tar.xz |
Bug 909720 - Remove unused code in Bugzilla::Search
r=glob, a=glob
-rw-r--r-- | Bugzilla/Search.pm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 18b2a3107..89231e7a8 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -2875,11 +2875,6 @@ sub _multiselect_table { return "attachments INNER JOIN attach_data " . " ON attachments.attach_id = attach_data.id" } - elsif ($field eq 'flagtypes.name') { - $args->{full_field} = $dbh->sql_string_concat("flagtypes.name", - "flags.status"); - return "flags INNER JOIN flagtypes ON flags.type_id = flagtypes.id"; - } my $table = "bug_$field"; $args->{full_field} = "bug_$field.value"; return $table; |