Bugzilla – Attachment 46679 Details for
Bug 15568
Circ rules are not displayed anymore
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
^# Attachment to Bug 15568 - Circ rules are not displayed anymore
SIGNED-OFF-Bug-15568-Fix-display-default-circ-rule.patch (text/plain), 1.65 KB, created by
Aleisha Amohia
on 2016-01-15 03:22:37 UTC
(
hide
)
Description:
^# Attachment to Bug 15568 - Circ rules are not displayed anymore
Filename:
MIME Type:
Creator:
Aleisha Amohia
Created:
2016-01-15 03:22:37 UTC
Size:
1.65 KB
patch
obsolete
>From 058913ef741f59132665fe0dfb4ded542af1f3a6 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 13 Jan 2016 16:13:36 +0000 >Subject: [PATCH] [SIGNED-OFF] Bug 15568: Fix display default circ rules > >To reproduce: >Go on the admin circ rules page (admin/smart-rules.pl), switch the >dropdown list from specific to "all libraries". >The rules are not displayed anymore. > >Test plan: >Apply this patch and confirm that the rules are now displayed correctly. >Make sure the enh introduced by bug 11625 is not broken. > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >Signed-off-by: Aleisha <aleishaamohia@hotmail.com> >--- > admin/smart-rules.pl | 14 ++++++++------ > 1 file changed, 8 insertions(+), 6 deletions(-) > >diff --git a/admin/smart-rules.pl b/admin/smart-rules.pl >index 9c903da..c92473c 100755 >--- a/admin/smart-rules.pl >+++ b/admin/smart-rules.pl >@@ -47,12 +47,14 @@ my ($template, $loggedinuser, $cookie) > > my $type=$input->param('type'); > >-my $branch; >-if ( C4::Context->preference('DefaultToLoggedInLibraryCircRules') ) { >- $branch = $input->param('branch') || GetBranchesCount() == 1 ? undef : C4::Branch::mybranch(); >-} >-else { >- $branch = $input->param('branch') || ( C4::Branch::onlymine() ? ( C4::Branch::mybranch() || '*' ) : '*' ); >+my $branch = $input->param('branch'); >+unless ( $branch ) { >+ if ( C4::Context->preference('DefaultToLoggedInLibraryCircRules') ) { >+ $branch = GetBranchesCount() == 1 ? undef : C4::Branch::mybranch(); >+ } >+ else { >+ $branch = C4::Branch::onlymine() ? ( C4::Branch::mybranch() || '*' ) : '*'; >+ } > } > $branch = '*' if $branch eq 'NO_LIBRARY_SET'; > >-- >1.7.10.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 Raw
Actions:
View
Attachments on
bug 15568
:
46593
|
46661
|
46662
|
46664
|
46665
|
46679
|
46685
|
46697
|
46827