bywatersolutions / koha-plugin-coverflow

Cover Flow plugin for Koha
12 stars 15 forks source link

Coverflow no longer works in 17.05 #7

Closed jonathanfield closed 6 years ago

jonathanfield commented 7 years ago

CoverFlow.pm fails to compile

Reference to use C4::Branch;

which is no longer required (and can be removed)

and

use Koha::Caches; to replace use Koha::Cache;

Only one occurrence of this in the CoverFlow.pm

my $cache = Koha::Cache->get_instance(); becomes my $cache = Koha::Caches->get_instance();

With these three small changes all working again.

kidclamp commented 6 years ago

These changes have been made