]> git.koha-community.org Git - koha.git/commit
Bug 30525: Items batch modification broken
authorOwen Leonard <oleonard@myacpl.org>
Wed, 13 Apr 2022 14:07:53 +0000 (14:07 +0000)
committerFridolin Somers <fridolin.somers@biblibre.com>
Thu, 21 Apr 2022 23:41:36 +0000 (13:41 -1000)
commit159a1a76c303d9a984b4d026640dd99348f88c28
tree33534facf2e7aab22da96816755aedfed6569029
parent674ad809f391cddc83338b7ae787b86e6dd490f2
Bug 30525: Items batch modification broken

This patch modifies instances in the code which try to get cookies
using:

my %cookies = parse CGI::Cookie($cookie);

In some cases the relevant lines can be removed because they are unused.
In others it can be replaced with:

my %cookies = CGI::Cookie->fetch();

To test, apply the patch and restart_all. Test the following pages to
confirm they load without errors:

- Circulation -> Offline circulation file upload
- Circulation -> Offline circulation -> Add to queue

- Tools -> Batch item modification
- Tools -> Stage MARC for import
- Tools -> Staged MARC management
- Tools -> Batch patron modification
- Tools -> Upload local cover image

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
offline_circ/enqueue_koc.pl
offline_circ/process_koc.pl
tools/batchMod.pl
tools/manage-marc-import.pl
tools/modborrowers.pl
tools/stage-marc-import.pl
tools/upload-cover-image.pl