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:
Owen Leonard 2024-02-20 17:16:04 +00:00 committed by Jonathan Druart
parent 78bcbf52f7
commit 76aac9b301
Signed by: jonathan.druart
GPG key ID: A085E712BEF0E0F0

View file

@ -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');