[koha-commits] main Koha release repository branch master updated. v17.05.00-714-g10b5e1e

Git repo owner gitmaster at git.koha-community.org
Wed Oct 4 18:26:54 CEST 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, master has been updated
       via  10b5e1ee049605ae6a0614214a7dab76e20e0ca5 (commit)
      from  a1bf319829c9d44991daa2fcf2593420f8445c5b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 10b5e1ee049605ae6a0614214a7dab76e20e0ca5
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Oct 2 14:11:52 2017 -0300

    Bug 19122: (bug 18098 follow-up) Fix IncludeSeeFromInSearches behaviour
    
    The IncludeSeeFromInSearches system preference is designed so that 'See from' headings from the authorities are included when you search in the catalog.
    That means that you could find an author not only by the name printed on the book, but for example also by their pseudonym or a different spelling of their name.
    
    It was added by bug 7417.
    
    This regression has been introduced by
      commit 5ef1b6710e7520b844e145e248da0deeee707fde
      Bug 18098: Add an index with the count of not onloan items
    
    -        } elsif ($record_type eq 'biblio' && C4::Context->preference('IncludeSeeFromInSearches')) {
    -            my $normalizer = Koha::RecordProcessor->new( { filters => 'EmbedSeeFromHeadings' } );
    [...]
    +            push @filters, 'IncludeSeeFromInSearches'
    +                if C4::Context->preference('IncludeSeeFromInSearches');
    
    Test plan:
    - Activate IncludeSeeFromInSearches
    - Catalog an authority for a person
      - main heading in 100
      - see from headings in 400
    - Catalog a bibliographic record and link it to the authority
    - Make sure the record is indexed
    - Verify that the record can be found searching for the main heading
    - Verify that the record can be found searching for the see from headings
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Yet another reason to get rid of all this functions from this script.
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>

-----------------------------------------------------------------------

Summary of changes:
 misc/migration_tools/rebuild_zebra.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list