Correction to keep translator tool happy
[koha.git] / tidyaccounts.pl
index 52c9463..bebc1d0 100755 (executable)
@@ -1,4 +1,7 @@
 #!/usr/bin/perl
+
+# $Id$
+
 #
 # written 31/5/00 by chris@katipo.co.nz to make a way to fix account mistakes
 #
@@ -22,7 +25,6 @@
 # Suite 330, Boston, MA  02111-1307 USA
 
 use strict;
-use C4::Database;
 use CGI;
 use C4::Accounts2;
 
@@ -38,13 +40,13 @@ my @name=$input->param;
 foreach my $key (@name){
   if ($key ne 'bornum'){
     my $temp=$input->param($key);
-    
+
 #    print $temp,$key;
     if ($temp ne ''){
       fixaccounts($bornum,$key,$temp);
-   
+
     }
   }
 }
-    
+
 print $input->redirect("boraccount.pl?bornum=$bornum");