@@ -, +, @@ - Make sure you have an up to date dev install - Install v1.0 of the KitchenSink plugin from https://github.com/bywatersolutions/koha-plugin-kitchen-sink/releases - Make sure the plugin does not show up in the list of installed plugins, and that the intranet-error.log has no info about it - Apply the patch - Reload plugins-home.pl - Verify that there is now some interesting info in intranet-error.log --- Koha/Plugins.pm | 2 ++ 1 file changed, 2 insertions(+) --- a/Koha/Plugins.pm +++ a/Koha/Plugins.pm @@ -86,6 +86,8 @@ sub GetPlugins { and %$req_metadata and any { !$plugin_metadata->{$_} || $plugin_metadata->{$_} ne $req_metadata->{$_} } keys %$req_metadata; push @plugins, $plugin; + } else { + warn $Module::Load::Conditional::ERROR; } } return @plugins; --