bug fix: wrong address for redirect in mancredit.pl and mainvoice.pl
This commit is contained in:
parent
7390b53613
commit
2f8c39d679
2 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue