View | Details | Raw Unified | Return to bug 36343
Collapse All | Expand All

(-)a/installer/data/mysql/atomicupdate/bug_36343.pl (-1 / +13 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number  => "36343",
5
    description => "Update plugin hooks for consistency",
6
    up          => sub {
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
10
        say $out "WARNING: Plugin authors should consider changes introduced here";
11
        say $out "WARNING: after_biblio_action, after_item_action and patron_generate_userid hooks now pass data inside a 'payload' hash";
12
    },
13
};

Return to bug 36343