Bugzilla – Attachment 20708 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]
Bug 10798 - OPAC_SEARCH_LIMIT behaves badly with search groups
0001-Bug-10798-OPAC_SEARCH_LIMIT-behaves-badly-with-searc.patch (text/plain), 1.50 KB, created by
Martin Renvoize (ashimema)
on 2013-08-28 15:05:37 UTC
(
hide
)
Description:
Bug 10798 - OPAC_SEARCH_LIMIT behaves badly with search groups
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2013-08-28 15:05:37 UTC
Size:
1.50 KB
patch
obsolete
>From 3cb821d9f7ec6ca1d3cbb2cfe6f2503b988c5623 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. >--- > C4/Auth.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 1e17e59..9061cf8 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -371,7 +371,7 @@ 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_search_limit && $opac_search_limit =~ /branch:(\w+)/ && $opac_limit_override) || ($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