diff options
author | lpsolit%gmail.com <> | 2007-07-25 21:51:00 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-07-25 21:51:00 +0200 |
commit | af19852c9e35f0364f692d76232d20d9fa5340b7 (patch) | |
tree | 0b3c589c6d44d169bdbdb1a8c3a07da33f692c1a | |
parent | 0e319040d036ed6bec7ce83a228821bbaead60dc (diff) | |
download | bugzilla-af19852c9e35f0364f692d76232d20d9fa5340b7.tar.gz bugzilla-af19852c9e35f0364f692d76232d20d9fa5340b7.tar.xz |
Bug 389407: api/Bugzilla/Auth.html incorrectly detected by t/009bugwords.t - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=LpSolit
-rw-r--r-- | t/009bugwords.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/009bugwords.t b/t/009bugwords.t index a4962f223..8abbe1606 100644 --- a/t/009bugwords.t +++ b/t/009bugwords.t @@ -79,7 +79,7 @@ foreach my $file (@testitems) { # "Bugzilla" if (grep /(?<!X\-)Bugzilla(?!_|::|->|\.pm)/, $text) { # Exclude JS comments, hyperlinks, USE, and variable assignment. - unless (grep /(\/\/.*|(org|api).*>|USE |= )Bugzilla/, $text) { + unless (grep /(\/\/.*|org.*>|api\/|USE |= )Bugzilla/, $text) { push(@errors, [$lineno, $text]); next; } |