Bugzilla – Attachment 86115 Details for
Bug 22451
Asset plugin is using the version from the DB
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22451: Make Asset plugin use Koha::version instead of version from db
Bug-22451-Make-Asset-plugin-use-Kohaversion-instea.patch (text/plain), 1.07 KB, created by
Josef Moravec
on 2019-03-05 19:30:11 UTC
(
hide
)
Description:
Bug 22451: Make Asset plugin use Koha::version instead of version from db
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2019-03-05 19:30:11 UTC
Size:
1.07 KB
patch
obsolete
>From 633ccc023423a10db863a9fdcc423ccde6dd779e Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >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..08748b4 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.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22451
:
86034
|
86035
|
86036
|
86115
|
86116
|
86117
|
87821
|
87822
|
87823
|
87897
|
87899
|
87900