Bug 34478: Fix name of CGI variable
'$query->param' in this script should be '$input->param' Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
78bcbf52f7
commit
76aac9b301
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ my ( $template, $loggedinuser, $cookie, $staffflags ) = get_template_and_user(
|
|||
}
|
||||
);
|
||||
|
||||
my $op = $query->param('op') // q{};
|
||||
my $op = $input->param('op') // q{};
|
||||
my $patron_id = $input->param('member');
|
||||
my $destination = $input->param('destination');
|
||||
my $newpassword = $input->param('newpassword');
|
||||
|
|
Loading…
Reference in a new issue