зеркало из https://github.com/mozilla/gecko-dev.git
Fixing warning: 'Use of uninitialized value in concatenation (.) or string at ../PLIF/PLIF/Service/TemplateToolkit.pm line 70.'
This commit is contained in:
Родитель
c5ed21b8e9
Коммит
05240d8e86
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче