diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-21 12:52:47 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-02-21 12:52:47 +0100 |
commit | e4432567a931732d06d59ef9b4763e872626ed4f (patch) | |
tree | d381b7f73f0ebaaf31be6a00a22c6c01973b146f /Bugzilla | |
parent | afae577698ecfbbb22a181e5d653b20e61fe2679 (diff) | |
download | bugs-e4432567a931732d06d59ef9b4763e872626ed4f.tar bugs-e4432567a931732d06d59ef9b4763e872626ed4f.tar.gz bugs-e4432567a931732d06d59ef9b4763e872626ed4f.tar.bz2 bugs-e4432567a931732d06d59ef9b4763e872626ed4f.tar.xz bugs-e4432567a931732d06d59ef9b4763e872626ed4f.zip |
Bug 331925: Unable to use pronouns (%user%, %reporter%, ...) in boolean charts when searching for the flag requestee or the flag setter
r=dkl a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index b21a3b385..cc74afb42 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -321,7 +321,9 @@ use constant SPECIAL_PARSING => { commenter => \&_contact_pronoun, qa_contact => \&_contact_pronoun, reporter => \&_contact_pronoun, - + 'setters.login_name' => \&_contact_pronoun, + 'requestees.login_name' => \&_contact_pronoun, + # Date Fields that accept the 1d, 1w, 1m, 1y, etc. format. creation_ts => \&_timestamp_translate, deadline => \&_timestamp_translate, |