diff options
author | 2007-02-23 02:41:29 +0000 | |
---|---|---|
committer | 2007-02-23 02:41:29 +0000 | |
commit | fa306daf3295b6ce67d3b3657259ee265f10a605 (patch) | |
tree | 28a4b29cef096f31c697099e1245f236c592716e /t | |
parent | Bug 371016: Versions are no longer sorted by version-sort (diff) | |
download | bugzilla-fa306daf3295b6ce67d3b3657259ee265f10a605.tar.gz bugzilla-fa306daf3295b6ce67d3b3657259ee265f10a605.tar.bz2 bugzilla-fa306daf3295b6ce67d3b3657259ee265f10a605.zip |
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; } |