From 62fb2988c6eb0cb1179fc9206a0c6934a2553ae5 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 13 Dec 2013 15:34:17 -0500 Subject: [PATCH] Bug 10852: QA Followup - Switch from KohaAuthorisedValues to AuthorisedValues Bug 10626 will remove the KohaAuthorisedValues plugin and keep the AuthorisedValues plugin. --- .../prog/en/modules/serials/serials-search.tt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt index 31d4b02..ca4058d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt @@ -1,7 +1,7 @@ [% USE Branches %] [% INCLUDE 'doc-head-open.inc' %] [% USE KohaDates %] -[% USE KohaAuthorisedValues %] +[% USE AuthorisedValues %] Koha › Serials [% biblionumber %] [% INCLUDE 'doc-head-close.inc' %] @@ -184,7 +184,7 @@ [% IF ( subscription.branchcode ) %][% Branches.GetName( subscription.branchcode ) %][% END %] - [% IF ( subscription.location ) %][% KohaAuthorisedValues.GetByCode( 'LOC', subscription.location ) %][% END %] + [% IF ( subscription.location ) %][% AuthorisedValues.GetByCode( 'LOC', subscription.location ) %][% END %] [% IF ( subscription.callnumber ) %][% subscription.callnumber %][% END %] @@ -271,7 +271,7 @@ [% IF ( subscription.branchcode ) %][% Branches.GetName( subscription.branchcode ) %][% END %] - [% IF ( subscription.location ) %][% KohaAuthorisedValues.GetByCode( 'LOC', subscription.location ) %][% END %] + [% IF ( subscription.location ) %][% AuthorisedValues.GetByCode( 'LOC', subscription.location ) %][% END %] [% IF ( subscription.callnumber ) %][% subscription.callnumber %][% END %] -- 1.7.2.5