X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=placerequest.pl;h=c62983d4d8cb3cedefb4f32d584f8484f0d303e9;hb=492ca6fcc62cea8b3f6064a77bd1b97632a93373;hp=f4148713769d58cd7f93abe535c2fcec2ee47924;hpb=d0374d003716dfb40796caad6390a4d69bfb0376;p=koha_gimpoz diff --git a/placerequest.pl b/placerequest.pl index f414871376..c62983d4d8 100755 --- a/placerequest.pl +++ b/placerequest.pl @@ -3,6 +3,24 @@ #script to place reserves/requests #writen 2/1/00 by chris@katipo.oc.nz + +# Copyright 2000-2002 Katipo Communications +# +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# +# Koha is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, +# Suite 330, Boston, MA 02111-1307 USA + use strict; #use DBI; use C4::Search; @@ -24,17 +42,17 @@ my $type=$input->param('type'); my $title=$input->param('title'); my $bornum=borrdata($borrower,''); if ($type eq 'str8' && $bornum ne ''){ -my $count=@bibitems; -@bibitems=sort @bibitems; -my $i2=1; -my @realbi; -$realbi[0]=$bibitems[0]; + my $count=@bibitems; + @bibitems=sort @bibitems; + my $i2=1; + my @realbi; + $realbi[0]=$bibitems[0]; for (my $i=1;$i<$count;$i++){ - my $i3=$i2-1; - if ($realbi[$i3] ne $bibitems[$i]){ - $realbi[$i2]=$bibitems[$i]; - $i2++; - } + my $i3=$i2-1; + if ($realbi[$i3] ne $bibitems[$i]){ + $realbi[$i2]=$bibitems[$i]; + $i2++; + } } #print $input->dump; my $env;