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

(-)a/Koha/Item.pm (-2 / +3 lines)
Lines 2016-2023 sub _after_item_action_hooks { Link Here
2016
        'after_item_action',
2016
        'after_item_action',
2017
        {
2017
        {
2018
            action  => $action,
2018
            action  => $action,
2019
            item    => $self,
2019
            item    => $self,                                             #FIXME To be deprecated
2020
            item_id => $self->itemnumber,
2020
            item_id => $self->itemnumber,                                 #FIXME To be deprecated
2021
            payload => { item => $self, item_id => $self->itemnumber },
2021
        }
2022
        }
2022
    );
2023
    );
2023
}
2024
}
(-)a/Koha/Patron.pm (-2 / +5 lines)
Lines 2062-2068 sub has_valid_userid { Link Here
2062
sub generate_userid {
2062
sub generate_userid {
2063
    my ( $self ) = @_;
2063
    my ( $self ) = @_;
2064
    my @responses = Koha::Plugins->call(
2064
    my @responses = Koha::Plugins->call(
2065
        'patron_generate_userid', { patron => $self },
2065
        'patron_generate_userid',
2066
        {
2067
            patron  => $self,                 #FIXME To be deprecated
2068
            payload => { patron => $self },
2069
        },
2066
    );
2070
    );
2067
    unless( @responses ) {
2071
    unless( @responses ) {
2068
        # Empty list only possible when there are NO enabled plugins for this method.
2072
        # Empty list only possible when there are NO enabled plugins for this method.
2069
- 

Return to bug 36343