Bugzilla – Attachment 90694 Details for
Bug 23104
Regression (18925) in circ rules - unlimited vs 0
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23104: (follow-up) fix display for 0/Unlimited
Bug-23104-follow-up-fix-display-for-0Unlimited.patch (text/plain), 1.77 KB, created by
Katrin Fischer
on 2019-06-17 20:15:12 UTC
(
hide
)
Description:
Bug 23104: (follow-up) fix display for 0/Unlimited
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2019-06-17 20:15:12 UTC
Size:
1.77 KB
patch
obsolete
>From 07c5f1e27338236982bcac3217c28f192ae20824 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Mon, 17 Jun 2019 13:54:39 +0000 >Subject: [PATCH] Bug 23104: (follow-up) fix display for 0/Unlimited > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >index b71c172a98..2fb25d2909 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt >@@ -138,7 +138,7 @@ > </td> > <td> > [% SET rule_value = CirculationRules.Get( rule.branchcode, rule.categorycode, rule.itemtype, 'maxissueqty' ) %] >- [% IF rule_value %] >+ [% IF rule_value || rule_value == "0" %] > [% rule_value | html %] > [% ELSE %] > <span>Unlimited</span> >@@ -146,7 +146,7 @@ > </td> > <td> > [% SET rule_value = CirculationRules.Get( rule.branchcode, rule.categorycode, rule.itemtype, 'maxonsiteissueqty' ) %] >- [% IF rule_value %] >+ [% IF rule_value || rule_value == "0" %] > [% rule_value | html %] > [% ELSE %] > <span>Unlimited</span> >-- >2.11.0
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 23104
:
90532
|
90533
|
90535
|
90536
|
90581
|
90666
|
90691
|
90692
|
90693
| 90694