Bug 9727: Fix typo in variable name
authorColin Campbell <colin.campbell@ptfs-europe.com>
Wed, 27 Feb 2013 17:52:02 +0000 (17:52 +0000)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Wed, 20 Mar 2013 00:48:25 +0000 (20:48 -0400)
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.
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Koha/SearchEngine/Solr/Index.pm

index 6fa3242..e526f1e 100644 (file)
@@ -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);
         }