https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=39031 --- Comment #1 from Tomás Cohen Arazi (tcohen) <tomascohen@gmail.com> --- I feel like just changing it like this would be flexible enough, while keeping the current behavior for plugin-as-a-backend implementations: ```diff - $backend_dir = $backend_plugin->bundle_path; + $backend_dir = $self->_backend->bundle_path; ``` The only weird thing that will be left in this scenario, is that both `$backend_plugin` and `$self->_backend` are instances of the same plugin... just with some extra internal variables set by `new_ill_backend()`. But in this context we already have an instance of the plugin, loaded 'as a backend' by `new_ill_backend()`. So it is redundant to instantiate the plugin, it seems. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes.