Bugzilla – Attachment 34339 Details for
Bug 13428
Fix facet deletion
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 13428: Fix regression on deleting facets
PASSED-QA-Bug-13428-Fix-regression-on-deleting-fac.patch (text/plain), 1.29 KB, created by
Kyle M Hall (khall)
on 2014-12-12 12:56:54 UTC
(
hide
)
Description:
[PASSED QA] Bug 13428: Fix regression on deleting facets
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2014-12-12 12:56:54 UTC
Size:
1.29 KB
patch
obsolete
>From b152fe764b128ba283cc4178d0d8e6d47568b06e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >Date: Wed, 10 Dec 2014 09:38:12 +0100 >Subject: [PATCH] [PASSED QA] Bug 13428: Fix regression on deleting facets > >Test plan: >Search for something >click on a facet with diacritic >click on another facet >remove the facet with diacritic > >Signed-off-by: Mason James <mtj@kohaaloha.com> > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >--- > opac/opac-search.pl | 3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) > >diff --git a/opac/opac-search.pl b/opac/opac-search.pl >index d7eaf9e..692d70b 100755 >--- a/opac/opac-search.pl >+++ b/opac/opac-search.pl >@@ -420,10 +420,11 @@ if ($operands[0] && !$operands[1]) { > > # limits are use to limit to results to a pre-defined category such as branch or language > my @limits = $cgi->param('limit'); >+@limits = map { uri_unescape($_) } @limits; > my @nolimits = $cgi->param('nolimit'); >+@nolimits = map { uri_unescape($_) } @nolimits; > my %is_nolimit = map { $_ => 1 } @nolimits; > @limits = grep { not $is_nolimit{$_} } @limits; >-@limits = map { uri_unescape($_) } @limits; > > if($params->{'multibranchlimit'}) { > my $multibranch = '('.join( " or ", map { "branch: $_ " } @{ GetBranchesInCategory( $params->{'multibranchlimit'} ) } ).')'; >-- >1.7.2.5
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 13428
:
34274
|
34313
| 34339