Bugzilla – Attachment 27083 Details for
Bug 12048
Doesn't display other libraries subscriptions when superlibrarian user
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Proposed patch v2
0001-Bug-12048-Doesn-t-display-other-libraries-subscripti.patch (text/plain), 1.70 KB, created by
Frédéric Demians
on 2014-04-14 11:12:30 UTC
(
hide
)
Description:
Proposed patch v2
Filename:
MIME Type:
Creator:
Frédéric Demians
Created:
2014-04-14 11:12:30 UTC
Size:
1.70 KB
patch
obsolete
>From a2967c429bba9754178b01fc8935ae2091c7fdc2 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Demians?= <f.demians@tamil.fr> >Date: Tue, 8 Apr 2014 17:26:18 +0200 >Subject: [PATCH] Bug 12048 - Doesn't display other libraries subscriptions > when superlibrarian user > >This is a regression in master and 3.14. When a user has superlibrian >permissions, a search on serials subscriptions must display other libraries >subscriptions even when IndependantBranch syspref is enabled. > >To reproduce/test the bug/patch: > >1. Enable IndependanBranch >2. Login as a user not having superlibrarian permission >3. Search for a serial subscription on: > /cgi-bin/koha/serials/serials-search.pl >4. Search a title which has at least 2 subscriptions: one in the user branch, > and one in another branch >5. On the result page, just 1 subscription is displayed: the one attached to > the userbranch > => this is normal >6. Login as a user having superlibrarian permission >7. Repeat step 3-5. >8. You get the same result as 5. You should have seen all subscriptions. > That's what you get after applying this patch. >--- > C4/Serials.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Serials.pm b/C4/Serials.pm >index 6c035d5..2b7fd51 100644 >--- a/C4/Serials.pm >+++ b/C4/Serials.pm >@@ -740,7 +740,7 @@ sub SearchSubscriptions { > $subscription->{cannotedit} = not can_edit_subscription( $subscription ); > $subscription->{cannotdisplay} = > ( C4::Context->preference("IndependentBranches") && >- C4::Context->userenv && >+ (!C4::Context->IsSuperLibrarian()) && > $subscription->{branchcode} ne C4::Context->userenv->{'branch'} ) ? 1 : 0; > } > >-- >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 Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 12048
:
26903
|
27083
|
27098
|
27105
|
30563