https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40984 --- Comment #2 from Marcel de Rooy <m.de.rooy@rijksmuseum.nl> --- I am not so sure about this: + # Log deprecation warning if any plugin is still using the old signature + my @plugins = Koha::Plugins->get_enabled_plugins( { verbose => 0 } ); + @plugins = grep { $_->can('after_authority_action') } @plugins; + if (@plugins) { + Koha::Logger->get->warn( + "after_authority_action hook: The old signature (with authority and authority_id as direct parameters) " + . "is deprecated and will be removed in a future release. " + . "Please update your plugin to use the 'payload' parameter instead." ); + } -- You are receiving this mail because: You are watching all bug changes.