From 4c7ed384fdf979952fab602a862eb07c76de22ca Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Tue, 26 Feb 2019 13:30:20 +0000 Subject: [PATCH] Bug 22451: Make Asset plugin use Koha::version instead of version from db Test plan: Apply the patch a try to use Koha, css and js files should be used normally --- Koha/Template/Plugin/Asset.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Koha/Template/Plugin/Asset.pm b/Koha/Template/Plugin/Asset.pm index 4cbc1bd..2fc111e 100644 --- a/Koha/Template/Plugin/Asset.pm +++ b/Koha/Template/Plugin/Asset.pm @@ -48,6 +48,7 @@ use base qw( Template::Plugin ); use File::Basename; use File::Spec; use C4::Context; +use Koha; =head1 FUNCTIONS @@ -140,7 +141,8 @@ sub url { ".", ); - my $version = C4::Context->preference('Version'); + my $version = Koha::version; + $version =~ s/([0-9]+\.[0-9]+)\.([0-9]+)\.([0-9]+)/$1$2$3/; foreach my $dir (@dirs) { my $abspath = File::Spec->catfile($root, $dir, $filename); if (-e $abspath) { -- 2.1.4