From b641eb0fcec0cfce9fddd5dacfd0f6d449cac401 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Andr=C3=A9=20Santoni?= Date: Wed, 2 Dec 2009 13:20:06 +0100 Subject: [PATCH] [MT2338] Fixed the missing content in the "active" column --- admin/currency.pl | 10 ++++++---- .../intranet-tmpl/prog/en/modules/admin/currency.tmpl | 7 +------ 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/admin/currency.pl b/admin/currency.pl index 644b327cf7..cb869e2016 100755 --- a/admin/currency.pl +++ b/admin/currency.pl @@ -165,11 +165,13 @@ if ($op eq 'add_form') { my $count = scalar(@$results); my @loop; for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){ + warn Data::Dumper::Dumper($results->[$i]); push @loop, { - currency => $results->[$i]{'currency'}, - rate => $results->[$i]{'rate'}, - symbol => $results->[$i]{'symbol'}, - timestamp => format_date($results->[$i]{'timestamp'}), + currency => $results->[$i]{'currency'}, + rate => $results->[$i]{'rate'}, + symbol => $results->[$i]{'symbol'}, + timestamp => format_date($results->[$i]{'timestamp'}), + active => $results->[$i]{'active'}, }; } $template->param(loop => \@loop); diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tmpl index 1b58a96b11..cb90468c86 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/currency.tmpl @@ -189,12 +189,7 @@ - - - ✓ - - - + ✓ ?op=add_form&searchfield=">Edit ?op=delete_confirm&searchfield=">Delete -- 2.20.1