Bugzilla – Attachment 16326 Details for
Bug 9727
Typo in code causes compilation failure with Solr enabled
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[PASSED QA] Bug 9727: Fix typo in variable name
PASSED-QA-Bug-9727-Fix-typo-in-variable-name.patch (text/plain), 1.70 KB, created by
Katrin Fischer
on 2013-03-19 09:00:28 UTC
(
hide
)
Description:
[PASSED QA] Bug 9727: Fix typo in variable name
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2013-03-19 09:00:28 UTC
Size:
1.70 KB
patch
obsolete
>From 306f73851e1ff0c18a99731da941bdafd84533e9 Mon Sep 17 00:00:00 2001 >From: Colin Campbell <colin.campbell@ptfs-europe.com> >Date: Wed, 27 Feb 2013 17:52:02 +0000 >Subject: [PATCH] [PASSED QA] Bug 9727: Fix typo in variable name > >Variable is passed as recordtype not record_type >correct name > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >before applying the patch >$ perl -wc Koha/SearchEngine/Solr/Index.pm >Global symbol "$record_type" requires explicit package name at Koha/SearchEngine/Solr/Index.pm line 43. >Koha/SearchEngine/Solr/Index.pm had compilation errors. > >after >Koha/SearchEngine/Solr/Index.pm syntax OK > >Signed-off-by: Dobrica Pavlinusic <dpavlin@rot13.org> >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >I can't really test this with solr, but as various people >at the hackfest have confirmed this to be fixing the problem >I feel save to pass QA. All tests and QA script pass too. >--- > Koha/SearchEngine/Solr/Index.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/Koha/SearchEngine/Solr/Index.pm b/Koha/SearchEngine/Solr/Index.pm >index 6fa3242..e526f1e 100644 >--- a/Koha/SearchEngine/Solr/Index.pm >+++ b/Koha/SearchEngine/Solr/Index.pm >@@ -40,7 +40,7 @@ sub index_record { > $record = GetAuthority( $id ) if $recordtype eq "authority"; > $record = GetMarcBiblio( $id ) if $recordtype eq "biblio"; > >- if ($record_type eq 'biblio' && C4::Context->preference('IncludeSeeFromInSearches')) { >+ if ($recordtype eq 'biblio' && C4::Context->preference('IncludeSeeFromInSearches')) { > my $normalizer = Koha::RecordProcessor->new( { filters => 'EmbedSeeFromHeadings' } ); > $record = $normalizer->process($record); > } >-- >1.7.9.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 9727
:
15757
|
15758
|
16254
|
16325
| 16326