X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=acqui%2Fcurrency.pl;h=7480fb6f1d176a33644a71e6168ea0cc4054e2e4;hb=bfb88cc4e0bd5fe62a46ec9c617690dd3099c878;hp=09d81c9b5dd0ef9068dd8bcf7deefcfcfb140f6a;hpb=3818a8dc384f1687d287e77fdb683b3eb518e036;p=koha_fer diff --git a/acqui/currency.pl b/acqui/currency.pl index 09d81c9b5d..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,23 +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); -# warn "$data / $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');