commiting forgotten changes before releasing 1.3.2
[koha.git] / simpleredirect.pl
blobc43ae81cb5ce43f1c44ba187970802f18ffe322d
1 #!/usr/bin/perl
3 #simple script to provide basic redirection
4 #used by members section
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
14 # version.
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
24 use CGI;
25 use strict;
27 my $input=new CGI;
29 my $choice=$input->param('chooseform');
31 if ($choice eq 'adult'){
32 print $input->redirect("/cgi-bin/koha/memberentry.pl?type=Add");
35 if ($choice eq 'organisation'){
36 print $input->redirect("/cgi-bin/koha/imemberentry.pl?type=Add");