From 2af3fac9716e03e12f1c8b2cdfa7ac268093e59d Mon Sep 17 00:00:00 2001 From: tipaul Date: Mon, 19 May 2003 14:34:10 +0000 Subject: [PATCH] fix for #242 --- koha-tmpl/opac-tmpl/default/en/opac-user.tmpl | 4 ++-- koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl | 4 ++-- opac/opac-user.pl | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/koha-tmpl/opac-tmpl/default/en/opac-user.tmpl b/koha-tmpl/opac-tmpl/default/en/opac-user.tmpl index aa05202134..be1c6cc8f0 100644 --- a/koha-tmpl/opac-tmpl/default/en/opac-user.tmpl +++ b/koha-tmpl/opac-tmpl/default/en/opac-user.tmpl @@ -88,8 +88,8 @@ You have items currently issued.
- - +YesNo +YesNo diff --git a/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl b/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl index 3934d12035..41cc92b74d 100755 --- a/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl +++ b/koha-tmpl/opac-tmpl/default/fr/opac-user.tmpl @@ -90,8 +90,8 @@ Vous avez documents en prêt actuellement. - - +OuiNon +OuiNon diff --git a/opac/opac-user.pl b/opac/opac-user.pl index faf7b65e66..b116ce72e6 100755 --- a/opac/opac-user.pl +++ b/opac/opac-user.pl @@ -86,8 +86,8 @@ foreach my $key (keys %$issues) { my %env; my $status = renewstatus(\%env,$borrowernumber, $issue->{'itemnumber'}); - $issue->{'renewable'} = $status; - + $issue->{'status'} = $status; + if ($issue->{'overdue'}) { push @overdues, $issue; $overdues_count++; -- 2.39.5