From: jake%acutex.net <> Date: Wed, 10 Oct 2001 02:14:59 +0000 (+0000) Subject: It's also possible to PROCESS another attachment fragment, not just INCLUDE. X-Git-Tag: bugzilla-2.14.1~99 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=812e23f4bb131d544c339f02188e55d266df43a6;p=thirdparty%2Fbugzilla.git It's also possible to PROCESS another attachment fragment, not just INCLUDE. No review needed for tests at this time. NOT PART OF BUILD. --- diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 8ae3926816..4d19c2ccab 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -50,7 +50,7 @@ foreach my $file(@testitems) { my @lines = ; close (FILE); foreach my $line (@lines) { - if ($line =~ m/\[% INCLUDE (.+?) /) { + if ($line =~ m/\[% (?:INCLUDE|PROCESS) (.+?) /) { my $template = $1; push (@testitems, $template) unless $t{$template}; $t{$template} = 1;