4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA 02111-1307 USA
27 # FIXME - This script uses a bunch of functions that appear in both
28 # C4::Acquisitions and C4::Biblio. But I gather that the latter are
29 # preferred. So should this script "use C4::Biblio;" ?
32 my $bibnum = checkinp($input->param('biblionumber'));
34 biblionumber => $bibnum,
35 title => $input->param('title')?$input->param('title'):"",
36 author => $input->param('author')?$input->param('author'):"",
37 abstract => $input->param('abstract')?$input->param('abstract'):"",
38 copyright => $input->param('copyrightdate')?$input->param('copyrightdate'):"",
39 seriestitle => $input->param('seriestitle')?$input->param('seriestitle'):"",
40 serial => $input->param('serial')?$input->param('serial'):"",
41 unititle => $input->param('unititle')?$input->param('unititle'):"",
42 notes => $input->param('notes')?$input->param('notes'):"",
44 my $subtitle = checkinp($input->param('subtitle'));
45 my $subject = checkinp($input->param('subject'));
46 my $addauthor = checkinp($input->param('additionalauthor'));
47 my $force = $input->param('Force');
56 &modsubtitle($bibnum, $subtitle);
57 &modaddauthor($bibnum, $addauthor);
59 $subject = uc($subject);
60 @sub = split(/\|/, $subject);
63 for (my $i = 0; $i < $count; $i++) {
67 $error = &modsubject($bibnum,$force,@sub);
70 my $template = gettemplate("updatebiblio.tmpl");
72 my @subs=split('\n',$error);
73 my @names=$input->param;
76 for (my $i=0;$i<$count;$i++) {
77 if ($names[$i] ne 'Force') {
79 $line{'value'}=$input->param("$names[$i]");
80 $line{'name'}=$names[$i];
81 push(@dataloop, \%line);
84 template->param(substring =>$subs[0]);
85 template->param(error =>$error);
86 template->param(dataloop => \@dataloop);
87 print "Content-Type: text/html\n\n", $template->output;
89 print $input->redirect("detail.pl?type=intra&bib=$bibnum");