Bug 12176: Remove HTML from additem.pl
[koha.git] / acqui / currency.pl
blobb7154b72f8db2c0e863c395f3f0a4eb6cc9aefb0
1 #!/usr/bin/perl
3 #script to display and update currency rates
5 # Copyright 2000-2002 Katipo Communications
6 # Copyright 2008-2009 BibLibre SARL
8 # This file is part of Koha.
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use strict;
24 use warnings;
25 use CGI qw ( -utf8 );
26 use C4::Acquisition;
27 use C4::Biblio;
28 use C4::Budgets;
30 # FIXME: CHECK AUTH
31 # FIXME: This should be part of another script, not a throwaway standalone.
32 # FIXME: params should have better checks before passed to ModCurrencies
33 # FIXME: need error handling if ModCurrencies FAILS.
35 my $input = new CGI;
37 foreach my $param ($input->param) {
38 if ($param ne 'type' && $param !~ /submit/) {
39 ModCurrencies($param, $input->param($param));
42 print $input->redirect('/cgi-bin/koha/acqui/acqui-home.pl');