diff options
author | Byron Jones <bjones@mozilla.com> | 2013-08-14 16:04:58 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-08-14 16:04:58 +0200 |
commit | b26b2df095b4f47c3b6c8b90da203c0682d86ae3 (patch) | |
tree | b5dedf481f2c49ce3546aec67918e61f08bd4a51 | |
parent | 78cf9d1e60c3bb5b809ea740c7f0b7293db396ea (diff) | |
download | bugzilla-b26b2df095b4f47c3b6c8b90da203c0682d86ae3.tar.gz bugzilla-b26b2df095b4f47c3b6c8b90da203c0682d86ae3.tar.xz |
Bug 905154: add "away" to the list of words hide review suggestions
-rw-r--r-- | extensions/Review/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Review/Extension.pm b/extensions/Review/Extension.pm index 12aca8065..ccbb4203e 100644 --- a/extensions/Review/Extension.pm +++ b/extensions/Review/Extension.pm @@ -18,7 +18,7 @@ use Bugzilla::Error; use Bugzilla::User; use Bugzilla::Util qw(clean_text); -use constant UNAVAILABLE_RE => qr/\b(?:unavailable|pto)\b/i; +use constant UNAVAILABLE_RE => qr/\b(?:unavailable|pto|away)\b/i; # # monkey-patched methods |