Fixing warning: 'Use of uninitialized value in concatenation (.) or string at ../PLIF/PLIF/Service/TemplateToolkit.pm line 70.'

This commit is contained in:
ian%hixie.ch 2002-04-06 20:19:12 +00:00
Родитель c5ed21b8e9
Коммит 05240d8e86
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -67,7 +67,9 @@ sub expand {
}
# ok, let's try to process it
my $result = '';
$self->assert($template->process($document, $data, \$result), 1, 'Error processing template: '.$template->error()); # XXX assumes ltr argument evaluation
if (not $template->process($document, $data, \$result)) {
$self->error(1, 'Error processing template: '.$template->error());
}
return $result;
}