[interchange] * Fix bug introduced when Vend::Parse tag handling changed -- no body was
Mike Heins <[email protected]> Thu, 09 Mar 2017 18:25:29 +0000
| Newsgroups | gmane.comp.web.interchange.cvs |
|---|---|
| Message-ID | <[email protected]> |
commit a619417569a69ad8fe52537893871628306f306f Author: Mike Heins <[email protected]> Date: Thu Mar 9 13:24:32 2017 -0500 * Fix bug introduced when Vend::Parse tag handling changed -- no body was sent when interpolating prepend/append values. lib/Vend/Table/Editor.pm | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) --- diff --git a/lib/Vend/Table/Editor.pm b/lib/Vend/Table/Editor.pm index 141eed3..dda6edd 100644 --- a/lib/Vend/Table/Editor.pm +++ b/lib/Vend/Table/Editor.pm @@ -925,9 +925,7 @@ sub display { log => 'none', enable => $opt->{restrict_allow}, disable => $opt->{restrict_deny}, - body => $record->{$_}, - }); - } + }, $record->{$_}); else { $record->{$_} = expand_values($record->{$_}); }