diff options
author | jake%acutex.net <> | 2001-10-10 04:14:59 +0200 |
---|---|---|
committer | jake%acutex.net <> | 2001-10-10 04:14:59 +0200 |
commit | 812e23f4bb131d544c339f02188e55d266df43a6 (patch) | |
tree | 6d4467486f257a5ea39d74a20a6de6cd9ac89d78 | |
parent | 4650377942c2e5d715f01f8214a9c01bb281bb4a (diff) | |
download | bugzilla-812e23f4bb131d544c339f02188e55d266df43a6.tar.gz bugzilla-812e23f4bb131d544c339f02188e55d266df43a6.tar.xz |
It's also possible to PROCESS another attachment fragment, not just INCLUDE.
No review needed for tests at this time. NOT PART OF BUILD.
-rw-r--r-- | t/Support/Templates.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Support/Templates.pm b/t/Support/Templates.pm index 8ae392681..4d19c2cca 100644 --- a/t/Support/Templates.pm +++ b/t/Support/Templates.pm @@ -50,7 +50,7 @@ foreach my $file(@testitems) { my @lines = <FILE>; 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; |