From 69d54bb3a3a2cc902bbcf87ba492bd09454a7de4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 10 Oct 2014 22:18:01 +0200 Subject: [PATCH] [SIGNED OFF] Bug 13071: format_date should not be called in currency.pl The TT plugin is used in the template, it is useless and can cause problems to format the dates before sending them to the template. Signed-off-by: Katrin Fischer Fixes the problem I was seeing before, didn't find any regressions. --- admin/currency.pl | 7 ------- koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt | 2 +- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/admin/currency.pl b/admin/currency.pl index 4849d31..9065681 100755 --- a/admin/currency.pl +++ b/admin/currency.pl @@ -42,7 +42,6 @@ use warnings; use CGI; use C4::Context; use C4::Auth; -use C4::Dates qw(format_date); use C4::Output; use C4::Budgets qw/GetCurrency GetCurrencies/; @@ -103,9 +102,6 @@ sub default_path { } $end_of_page--; my @display_curr = @currencies[ $offset .. $end_of_page ]; - for my $c (@display_curr) { - $c->{timestamp} = format_date( $c->{timestamp} ); - } my $activecurrency = GetCurrency(); $template->param( @@ -172,9 +168,6 @@ sub add_form { $template->param( $_ => $curr_rec->{$_} ); } } - if ($date) { - $template->param( 'timestamp' => format_date($date) ); - } return; } diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt index 189aefb..cbcb1a0 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tt @@ -101,7 +101,7 @@
  • - Last updated: [% timestamp %] + Last updated: [% timestamp | $KohaDates %]
  • -- 1.9.1