It's also possible to PROCESS another attachment fragment, not just INCLUDE.

No review needed for tests at this time. NOT PART OF BUILD.
This commit is contained in:
jake%acutex.net 2001-10-09 19:14:59 +00:00
Родитель 6907d52b27
Коммит 9e3be8f1c7
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -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;