16 Sep
2022
16 Sep
'22
8:02 a.m.
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=29744 --- Comment #15 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- Putting bug 31468 (from myself) in the picture here too: When running API, we need to look for $ENV{PLACK_ENV}, but the underscore is not included in the Context sub. sub is_psgi_or_plack { my $is_psgi_or_plack = 0; - if ( any { /(^psgi\.|^plack\.)/i } keys %ENV ) { + if ( any { /^(psgi|plack)[._]/i } keys %ENV ) { And note, with unit tests :) -- You are receiving this mail because: You are watching all bug changes.