From ad6a12d12d7be7a2c7fe26267f8294d386cbcd31 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. --- C4/Letters.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Letters.pm b/C4/Letters.pm index 875eb7e..9dcfdc7 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.9.3