[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.00-27-g960b449

Git repo owner gitmaster at git.koha-community.org
Thu Dec 19 23:41:56 CET 2019


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, 19.11.x has been updated
       via  960b4491cbb159f44352da9e936d7aa03b666b24 (commit)
       via  8073350819ea0fa73e3492e62b52575fecaecc3e (commit)
       via  bf793c3fe0e9007e81d0258ac26a70c38aa02978 (commit)
       via  6f102abcb1878f39a03d72141c512cb84602aaa7 (commit)
       via  cb1db1ddb11cadc9dc39ec9440fb1b27a66d6835 (commit)
       via  bb110db48dee3a7eddcaea743e48e6da49d86e9c (commit)
      from  17eabbf4bf4b48f0ff938f3ac05bcbe40f5970d2 (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 960b4491cbb159f44352da9e936d7aa03b666b24
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Dec 4 15:44:53 2019 +0100

    Bug 24170: Fix sysprefs search result order
    
    The same sysprefs search will not always return the results in the same
    order.
    If you search for 'd' in the "search system preferences" box
      /cgi-bin/koha/admin/preferences.pl?op=search&searchfield=d
    you will see that the modules are not ordered consistently.
    
    This patch makes them display alphabetically
    
    Test plan:
    Search the same string several times in the syspref list.
    The search result should always be ordered the same way
    
    Signed-off-by: cori <corilynn.arnold at gmail.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 8073350819ea0fa73e3492e62b52575fecaecc3e
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Nov 11 10:14:14 2019 +0100

    Bug 23785: Fix call get_coins on undef value in opac-search.pl
    
    If the search engine index returns a record that is no longer in the DB,
    an OPAC search will explode with:
      Can't call method "get_coins" on an undefined value at
      /usr/share/koha/opac/cgi-bin/opac/opac-search.pl line 692.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit bf793c3fe0e9007e81d0258ac26a70c38aa02978
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Mon Nov 25 13:18:16 2019 -0500

    Bug 24106: In returns.pl, don't search for item if no barcode is provided
    
    When loading returns.pl, code to check rotating collections fires off an search for items by barcode, but doesn't check for a barcode first. This means the code will search for items where barcode is NULL, which is definitely not the intended function.
    
    Test Plan:
    1) Apply this patch
    2) Set up a rotating collection with items
    3) Transfer the collection
    4) Check in a rotating collection item
    5) Note no change in functionality
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 6f102abcb1878f39a03d72141c512cb84602aaa7
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Mon Dec 2 15:14:33 2019 +0000

    Bug 24124: Fix authorities selection in batch deletion tool in Chrome
    
    This patch adds some inline CSS to force clearing on some elements in
    the forms for batch record modification and deletion. The problem with
    selecting the "Authorities" radio button stemmed from the fact that
    non-clearing floats caused elements to invisibly overlap in the form.
    
    To test, apply the patch and test both batch record modification and
    batch record deletion. Upon selecting the "Authorities" radio button in
    each case the "Select a list of records" tab should disappear. Selecting
    the "Biblios" option should re-display the tab.
    
    Signed-off-by: Lucas Gass <lucas at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit cb1db1ddb11cadc9dc39ec9440fb1b27a66d6835
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Dec 3 19:54:07 2019 +0000

    Bug 24164: Unit test
    
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit bb110db48dee3a7eddcaea743e48e6da49d86e9c
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Tue Dec 3 19:55:19 2019 +0000

    Bug 24164: Copy the letter for each email
    
    To test:
    1 - Set or have two patrons with emails - note thier borrowernumber for the report
    2 - Create a report - note the report id ($REPORT_ID)
    SELECT borrowernumber, surname, firstname, email FROM borrowers WHERE borrowernumber IN (##,##);
    3 - Create a notice in circulation with code TESTEMAIL
    4 - The content should be "[% surname %]"
    5 - perl misc/cronjobs/patron_emailer.pl --report $REPORT_ID --notice TESTEMAIL --module circulation --from anyone at anywhere.com --verbose
    6 - Note that the emails both have the same surname
    7 - Apply patch
    8 - Repeat 5
    9 - Emails now have correct content
    
    Signed-off-by: Kelly McElligott <kelly at bywatersolutions.com>
    Signed-off-by: Jessica Zairo <jzairo at bywatersolutions.com>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 C4/Reports/Guided.pm                               |    2 +-
 admin/preferences.pl                               |    2 +-
 circ/returns.pl                                    |   28 +++++++++++---------
 .../prog/en/modules/tools/batch_delete_records.tt  |    4 +--
 .../en/modules/tools/batch_record_modification.tt  |    2 +-
 opac/opac-search.pl                                |    2 +-
 t/db_dependent/Reports/Guided.t                    |    6 +++--
 7 files changed, 24 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list