From de83c39c7c354f8a146a9206c4332371dda82dc6 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] 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>
---
 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';
 
-- 
2.1.4