From e3abb18bfedb16d638cbda718ed439c82b77081f Mon Sep 17 00:00:00 2001 From: oleonard Date: Tue, 13 Jul 2004 20:16:22 +0000 Subject: [PATCH] Fix for Bug 796 --- opac/opac-userdetails.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opac/opac-userdetails.pl b/opac/opac-userdetails.pl index 0942ec6fc0..a2355fd0d9 100755 --- a/opac/opac-userdetails.pl +++ b/opac/opac-userdetails.pl @@ -30,9 +30,9 @@ $borr->{'dateofbirth'} = format_date($borr->{'dateofbirth'}); $borr->{'ethnicity'} = fixEthnicity($borr->{'ethnicity'}); -$template->param($borr, - LibraryName => C4::Context->preference("LibraryName"), -); +$template->param($borr); +$template->param(LibraryName => C4::Context->preference("LibraryName") + ); output_html_with_http_headers $query, $cookie, $template->output; -- 2.39.5