From c72ec1dc6a3b071d645b09c42a06b1f8d710f1a8 Mon Sep 17 00:00:00 2001 From: slef Date: Tue, 15 Jul 2003 11:34:52 +0000 Subject: [PATCH] fixes from paul email --- C4/Biblio.pm | 5 ++++- modbib.pl | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index 4f8dfe15ed..18b8595476 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -1,6 +1,9 @@ package C4::Biblio; # $Id$ # $Log$ +# Revision 1.56 2003/07/15 11:34:52 slef +# fixes from paul email +# # Revision 1.55 2003/07/15 00:02:49 slef # Work on bug 515... can we do a single-side rename of notes to bnotes? # @@ -1599,7 +1602,7 @@ sub OLDnewbiblioitem { $biblioitem->{'subclass'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'}, $biblioitem->{'volumedate'}, $biblioitem->{'volumeddesc'}, $biblioitem->{'illus'}, - $biblioitem->{'pages'}, $biblioitem->{'binotes'}, + $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'lccn'}, $biblioitem->{'marc'}, $biblioitem->{'place'}); $sth->finish; diff --git a/modbib.pl b/modbib.pl index 12a437614a..ead8781b9d 100755 --- a/modbib.pl +++ b/modbib.pl @@ -93,7 +93,7 @@ $template->param ( biblionumber => $bibnum, additionalauthor => $additional, subtitle => $data->{'subtitle'}, unititle => $data->{'unititle'}, - notes => $data->{'binotes'}, + notes => $data->{'bnotes'}, serial => $data->{'serial'}); output_html_with_http_headers $input, $cookie, $template->output; -- 2.39.2