Koha/installer/data/mysql/db_revs/231200020.pl
Katrin Fischer 0e4677d3ef
Bug 36343: DBRev 23.12.00.020
Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
2024-04-16 17:59:44 +02:00

13 lines
447 B
Perl
Executable file

use Modern::Perl;
return {
bug_number => "36343",
description => "Update plugin hooks for consistency",
up => sub {
my ($args) = @_;
my ( $dbh, $out ) = @$args{qw(dbh out)};
say $out "WARNING: Plugin authors should consider changes introduced here";
say $out "WARNING: after_biblio_action, after_item_action and patron_generate_userid hooks now pass data inside a 'payload' hash";
},
};