Bugzilla – Attachment 74685 Details for
Bug 20456
Remove the C4::Serials::GetSubscriptionsFromBorrower
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20456: (follow-up) Fix number of subscriptions and position display
Bug-20456-follow-up-Fix-number-of-subscriptions-an.patch (text/plain), 1.77 KB, created by
Séverine Queune
on 2018-04-21 10:38:01 UTC
(
hide
)
Description:
Bug 20456: (follow-up) Fix number of subscriptions and position display
Filename:
MIME Type:
Creator:
Séverine Queune
Created:
2018-04-21 10:38:01 UTC
Size:
1.77 KB
patch
obsolete
>From c0e290abd1716b925ffe652ce760f3dd65528365 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sat, 21 Apr 2018 01:07:58 +0000 >Subject: [PATCH] Bug 20456: (follow-up) Fix number of subscriptions and > position display >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >TT variables needed to be adjusted because of changes from bug 20400. >Also: while we want logged_in_user in OPAC, we don't want that in staff. > >1) Check the right number of subscriptions is displayed on top of the table >2) check the right position number is display for the routing list > >Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt >index c79d3bb..0a629ea 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/routing-lists.tt >@@ -26,19 +26,19 @@ > </form> > <!-- Search Bar End --> > >+[% SET routinglists = patron.get_routing_lists %] > <h1> > [% UNLESS ( routinglists ) %] > 0 subscription routing lists >-[% ELSIF ( routinglists.size() == 1 ) %] >-[% routinglists.size() %] subscription routing list >+[% ELSIF ( routinglists.count == 1 ) %] >+[% routinglists.count %] subscription routing list > [% ELSE %] >-[% routinglists.size() %] subscription routing lists >+[% routinglists.count %] subscription routing lists > [% END %] > </h1> > > <div id="subscriptions"> > >-[% SET routinglists = logged_in_user.get_routing_lists %] > [% IF ( routinglists ) %] > <table id="subscriptiont"> > <thead> >-- >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 20456
:
73119
|
73120
|
74667
|
74668
|
74675
|
74683
|
74684
| 74685