Fix the error handling of compiled templates

This commit is contained in:
ian%hixie.ch 2003-03-14 03:59:29 +00:00
Родитель cd62b1a9a1
Коммит 9a28f209ac
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -64,7 +64,9 @@ sub expand {
# what we have here is a potential Template::Document
# let's try to evaluate it
$document = eval $string;
$self->assert((not defined($@)), 1, "Error loading compiled template: $@");
if ($@) {
$self->error(1, "Error loading compiled template: $@");
}
} else { # $type eq 'TemplateToolkit'
# what we have is a raw string
$document = \$string;