Use chdir instead of absolute path
[koha.git] / placerequest.pl
index f414871..ece3e2a 100755 (executable)
@@ -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,19 +42,19 @@ 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;
 
 my $const;
@@ -55,5 +73,5 @@ print $input->redirect("request.pl?bib=$biblio");
 } elsif ($bornum eq ''){
   print $input->header();
   print "Invalid card number please try again";
-  print $input->dump;
+  print $input->Dump;
 }