From 030a8dd6f91331bde8d4b5f26d536769bc33572b Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Sat, 21 Jan 2017 16:02:50 +0100 Subject: [PATCH] Bug 17964: Support date formatting Using the KohaDates plugin will allow us to format dates as we want, using the same filters as the ones defined in the KohaDates TT plugin. Signed-off-by: Kyle M Hall --- C4/Letters.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Letters.pm b/C4/Letters.pm index ebed363..b8aab42 100644 --- a/C4/Letters.pm +++ b/C4/Letters.pm @@ -1456,6 +1456,8 @@ sub _process_tt { my $tt_params = _get_tt_params( $tables ); + $content = qq|[% USE KohaDates %]$content|; + my $output; $template->process( \$content, $tt_params, \$output ) || croak "ERROR PROCESSING TEMPLATE: " . $template->error(); -- 2.1.4