3 #written by chris@katipo.co.nz
5 #script to display and update currency rates
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA 02111-1307 USA
27 use C4
::Bookfund
qw(ModCurrencies);
30 # FIXME: This should be part of another script, not a throwaway standalone.
31 # FIXME: params should have better checks before passed to ModCurrencies
32 # FIXME: need error handling if ModCurrencies FAILS.
36 foreach my $param ($input->param) {
37 if ($param ne 'type' && $param !~ /submit/) {
38 ModCurrencies
($param, $input->param($param));
41 print $input->redirect('/cgi-bin/koha/acqui/acqui-home.pl');