From 0def36fb8d5835dd222388a618b13fd3017488c9 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 Signed-off-by: Hayley Mapley --- 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 4cbc1bd0e8..08748b46e3 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$4/; foreach my $dir (@dirs) { my $abspath = File::Spec->catfile($root, $dir, $filename); if (-e $abspath) { -- 2.11.0