Bug 18376 - authority framework creation fails under Plack
authorFridolin Somers <fridolin.somers@biblibre.com>
Tue, 4 Apr 2017 12:17:15 +0000 (14:17 +0200)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 19 May 2017 13:53:14 +0000 (09:53 -0400)
commit6a82ff4b8907f17fb17af3201ab6e96320a995bf
tree5ef29a2cb1b14c93ac4054466d888ccf33ede737
parent4c631a0824a38177279475f77e9246087fa97515
Bug 18376 - authority framework creation fails under Plack

With plack, when creating a new authority framework from another, you get the error :
Can't call method "prepare" on an undefined value at (...)/src/admin/auth_tag_structure.pl line 267.

Looks like plack does not like when the var $dbh from the script is called inside a sub.

This patch adds a local var $dbh inside sub duplicate_auth_framework(), like in sub StringSearch().

Also correctes a redefine of my $sth.

Test plan:
- Go to Administration > Authority types
- Create a new type
- On this new type click on Actions > MARC Structure
- Select another type and click OK
=> You must get a table filled with the tag structure
Check with and without plack
You may not be able to reproduce the error with plack.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
admin/auth_tag_structure.pl