Bug 34478: Fix op check in table settings admin
The "action" hidden field was renamed to "op", but "action" was still being looked for in the script. Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
d98bd89094
commit
b920d12090
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|||
}
|
||||
);
|
||||
|
||||
my $op = $input->param('action') // 'list';
|
||||
my $op = $input->param('op') // 'list';
|
||||
|
||||
if ( $op eq 'cud-save' ) {
|
||||
my $module = $input->param('module');
|
||||
|
|
Loading…
Reference in a new issue