From 3eabf868b703bda6547c2693ee45d7bc0b19ae74 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Tue, 15 Oct 2013 04:06:37 +0800 Subject: Bug 926272: searching for an unset tracking flag fails since BMO upgrade --- Bugzilla/Search.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index f51a12372..bb94cad47 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -1668,7 +1668,11 @@ sub _params_to_data_structure { # And then process the modern "custom search" format. $clause->add( $self->_custom_search ); - + + # BMO - allow post-processing of search clauses + Bugzilla::Hook::process('search_clause_structure', + { search => $self, clause => $clause }); + return $clause; } -- cgit v1.2.3-24-g4f1b