Bugzilla – Attachment 21739 Details for
Bug 10798
OPAC_SEARCH_LIMIT behaves badly with search groups
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 10798 - OPAC_SEARCH_LIMIT behaves badly with search groups
Bug-10798---OPACSEARCHLIMIT-behaves-badly-with-sea.patch (text/plain), 1.58 KB, created by
Srdjan Jankovic
on 2013-10-03 02:09:24 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 10798 - OPAC_SEARCH_LIMIT behaves badly with search groups
Filename:
MIME Type:
Creator:
Srdjan Jankovic
Created:
2013-10-03 02:09:24 UTC
Size:
1.58 KB
patch
obsolete
>From 4bb60efc17e99de5e9b142b41804c3ab9b344dc3 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 28 Aug 2013 16:00:37 +0100 >Subject: [PATCH] Bug 10798 - OPAC_SEARCH_LIMIT behaves badly with search > groups > >Since the addition of search groups to koha, the branch limiting >parameter in multiple PAC by URL support should also support >limiting by these search groups. This patch adds this ability. > >Signed-off-by: Srdjan <srdjan@catalyst.net.nz> >--- > C4/Auth.pm | 6 +++++- > 1 file changed, 5 insertions(+), 1 deletion(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 1e17e59..46d7477 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -371,7 +371,11 @@ sub get_template_and_user { > my $opac_search_limit = $ENV{'OPAC_SEARCH_LIMIT'}; > my $opac_limit_override = $ENV{'OPAC_LIMIT_OVERRIDE'}; > my $opac_name = ''; >- if (($opac_search_limit && $opac_search_limit =~ /branch:(\w+)/ && $opac_limit_override) || ($in->{'query'}->param('limit') && $in->{'query'}->param('limit') =~ /branch:(\w+)/)){ >+ if ( >+ ($opac_limit_override && $opac_search_limit && $opac_search_limit =~ /branch:(\w+)/) || >+ ($in->{'query'}->param('limit') && $in->{'query'}->param('limit') =~ /branch:(\w+)/) || >+ ($in->{'query'}->param('multibranchlimit') && $in->{'query'}->param('multibranchlimit') =~ /multibranchlimit-(\w+)/) >+ ) { > $opac_name = $1; # opac_search_limit is a branch, so we use it. > } elsif ( $in->{'query'}->param('multibranchlimit') ) { > $opac_name = $in->{'query'}->param('multibranchlimit'); >-- >1.8.1.2
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 10798
:
20708
|
21739
|
22237
|
22238