http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8897 Mirko Tietgen <mirko@abunchofthings.net> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Patch doesn't apply |Needs Signoff --- Comment #33 from Mirko Tietgen <mirko@abunchofthings.net> ---
Finally, and this is a definite blocker, it looks like C4::GnuPG is initialized with file-level my variables:
+my $gpg = new Crypt::GPG; +$gpg->gpgbin('/usr/bin/gpg'); +$gpg->encryptsafe(0); # we have to allow untrusted keys
This will not work well with persistent environments like Plack. The my could be changed to our, but even better would be changing the way initialization is handled such that a file-level variable is unnecessary.
The initialization id required by the perl dependency. I have changed it to our. I have also rebased and resolved the conflict in Letters.pm. -- You are receiving this mail because: You are watching all bug changes.