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

This commit is contained in:
lpsolit%gmail.com 2007-07-25 14:51:00 +00:00
Родитель ae750f506e
Коммит fede54a9bc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -79,7 +79,7 @@ foreach my $file (@testitems) {
# "Bugzilla"
if (grep /(?<!X\-)Bugzilla(?!_|::|-&gt|\.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;
}