From 2f8c39d679d84a0f5a24b7d35b0a45ad1cffde3d Mon Sep 17 00:00:00 2001 From: btoumi Date: Thu, 24 Aug 2006 13:06:49 +0000 Subject: [PATCH] bug fix: wrong address for redirect in mancredit.pl and mainvoice.pl --- members/mancredit.pl | 2 +- members/maninvoice.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/members/mancredit.pl b/members/mancredit.pl index da02bc4673..bb508bae4b 100755 --- a/members/mancredit.pl +++ b/members/mancredit.pl @@ -43,7 +43,7 @@ if ($add){ $amount = -$amount; my $type=$input->param('type'); manualinvoice($bornum,$itemnum,$desc,$type,$amount); - print $input->redirect("/cgi-bin/koha/boraccount.pl?bornum=$bornum"); + print $input->redirect("/cgi-bin/koha/members/boraccount.pl?bornum=$bornum"); } else { my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "mancredit.tmpl", diff --git a/members/maninvoice.pl b/members/maninvoice.pl index 20213dd711..bb265c85d9 100755 --- a/members/maninvoice.pl +++ b/members/maninvoice.pl @@ -43,7 +43,7 @@ if ($add){ my $amount=$input->param('amount'); my $type=$input->param('type'); manualinvoice($bornum,$itemnum,$desc,$type,$amount); - print $input->redirect("/cgi-bin/koha/boraccount.pl?bornum=$bornum"); + print $input->redirect("/cgi-bin/koha/members/boraccount.pl?bornum=$bornum"); } else { my ($template, $loggedinuser, $cookie) = get_template_and_user({template_name => "maninvoice.tmpl", -- 2.11.0