diff options
author | mkanat%bugzilla.org <> | 2007-02-23 03:41:29 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-02-23 03:41:29 +0100 |
commit | fa306daf3295b6ce67d3b3657259ee265f10a605 (patch) | |
tree | 28a4b29cef096f31c697099e1245f236c592716e /t | |
parent | c1cec45127bc314a34eca12da2fce5d86710249c (diff) | |
download | bugzilla-fa306daf3295b6ce67d3b3657259ee265f10a605.tar.gz bugzilla-fa306daf3295b6ce67d3b3657259ee265f10a605.tar.xz |
Bug 349423: Release Notes for Bugzilla 3.0
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
Diffstat (limited to 't')
-rw-r--r-- | t/009bugwords.t | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/t/009bugwords.t b/t/009bugwords.t index 5b1a9d6ba..bf3d91f26 100644 --- a/t/009bugwords.t +++ b/t/009bugwords.t @@ -77,9 +77,9 @@ foreach my $file (@testitems) { } # "Bugzilla" - if (grep /(?<!X\-)Bugzilla(?!_)/, $text) { - # Exclude JS comments, hyperlinks, USE and variable assignment. - unless (grep /(\/\/.*|org.*>|USE |= )Bugzilla/, $text) { + if (grep /(?<!X\-)Bugzilla(?!_|::|->|\.pm)/, $text) { + # Exclude JS comments, hyperlinks, USE, and variable assignment. + unless (grep /(\/\/.*|(org|api).*>|USE |= )Bugzilla/, $text) { push(@errors, [$lineno, $text]); next; } |