X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=acqui%2Fcurrency.pl;h=7480fb6f1d176a33644a71e6168ea0cc4054e2e4;hb=827ef0e83c594d92c2fc387760b3f0e43adfe032;hp=7362264a132a3a99add82d0cc49b27d66b2925b5;hpb=2ffd5b7228f4e638583162d483e1dd2febeafe1b;p=koha.git diff --git a/acqui/currency.pl b/acqui/currency.pl index 7362264a13..7480fb6f1d 100755 --- a/acqui/currency.pl +++ b/acqui/currency.pl @@ -1,13 +1,9 @@ #!/usr/bin/perl -# $Id$ - -#written by chris@katipo.co.nz -#9/10/2000 #script to display and update currency rates - # Copyright 2000-2002 Katipo Communications +# Copyright 2008-2009 BibLibre SARL # # This file is part of Koha. # @@ -20,22 +16,27 @@ # 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 +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +use strict; +use warnings; use CGI; use C4::Acquisition; use C4::Biblio; -use C4::Bookfund; +use C4::Budgets; -my $input=new CGI; +# FIXME: CHECK AUTH +# FIXME: This should be part of another script, not a throwaway standalone. +# FIXME: params should have better checks before passed to ModCurrencies +# FIXME: need error handling if ModCurrencies FAILS. -my @params=$input->param; -foreach my $param (@params){ - if ($param ne 'type' && $param !~ /submit/){ - my $data=$input->param($param); - ModCurrencies($param,$data); -} +my $input = new CGI; + +foreach my $param ($input->param) { + if ($param ne 'type' && $param !~ /submit/) { + ModCurrencies($param, $input->param($param)); + } } print $input->redirect('/cgi-bin/koha/acqui/acqui-home.pl');