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

(-)a/installer/data/mysql/atomicupdate/bug_40983.pl (-1 / +16 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
use Koha::Installer::Output qw(say_warning say_success say_info);
3
4
return {
5
    bug_number  => "40983",
6
    description => "Warn about removed pre-payload parameters of after_biblio_action hooks",
7
    up          => sub {
8
        my ($args) = @_;
9
        my ( $dbh, $out ) = @$args{qw(dbh out)};
10
11
        say_warning(
12
            $out,
13
            "WARNING: A few deprecated parameters for after_biblio_action plugins have been removed now. If you still use them in your plugins, adjust your plugins right away to use the payload hash and prevent issues!"
14
        );
15
    },
16
};

Return to bug 40983