]> git.koha-community.org Git - koha.git/commit
Bug 26434: Fix plugin dirs addition to @INC
authorFridolin Somers <fridolin.somers@biblibre.com>
Fri, 11 Sep 2020 14:03:28 +0000 (16:03 +0200)
committerLucas Gass <lucas@bywatersolutions.com>
Fri, 16 Oct 2020 16:23:43 +0000 (16:23 +0000)
commitaaef04500654a997f722c17adff017a0a4687e8d
tree015e9c01cf152d8209b0e40dfb058d2daa9ab6f4
parentdc94e57b9620116a889b39eef700ace2f42b8664
Bug 26434: Fix plugin dirs addition to @INC

Plugin dirs defined in koha-conf.xml are added to @INC in order to compile perl code.
Looks like with plack those dirs are added several times.
This may lead to an error "INCLUDE_PATH exceeds 64 directories".

This bug was identified with Carrousel plugin : https://inlibro.com/instructions-carrousel/

Test plan :
1) Enable plack and plugins
2) Look at page about.pl : @INC contains one plugin dir 'var/lib/plugins'
3) Install plugin KitchenSink : https://github.com/bywatersolutions/koha-plugin-kitchen-sink
4) Dont apply patch
5) Use configure on KitchenSink
6) Look at page about.pl : @INC contains server plugin dir 'var/lib/plugins'
7) Apply patch and restart plack
8) Use configure on KitchenSink
9) Look at page about.pl : @INC contains one plugin dir 'var/lib/plugins'

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(cherry picked from commit dcdc72aee7d835c08ca3565a83a3dae7389a4f87)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
Koha/Plugins.pm
Koha/Plugins/Handler.pm