[koha-commits] main Koha release repository branch master updated. v19.11.00-39-ged6fdb9

Git repo owner gitmaster at git.koha-community.org
Fri Dec 13 15:31:39 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, master has been updated
       via  ed6fdb916c14983cfb898ba204510e11e423e412 (commit)
       via  c926c934ad6a607f80d6afac9553761cca511ea2 (commit)
       via  773f7ca461d90fef78311bb09aebc64ff47a3e33 (commit)
       via  916bb2a2b888873d3ace0aa9ff8aeda89c722b24 (commit)
       via  6ca1330e0dedd28bd0ea3808a7a0536085ba35a6 (commit)
       via  76cd9cd7e75539954e9840ed4f688285e566004a (commit)
       via  3a00e676dc04f0b721c5c318b5006001fb16b6e6 (commit)
      from  ea7311fedfc8e3e031b4f387c148b158b82e5db0 (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 ed6fdb916c14983cfb898ba204510e11e423e412
Author: Fridolin Somers <fridolin.somers at biblibre.com>
Date:   Fri Nov 22 15:04:34 2019 +0100

    Bug 24090: Subfield text in red when mandatory in record edition
    
    In biblio or autority record edition, color subfield text in red when mandatory.
    Like patron fields in patron edition form.
    
    Test plan :
    1) Edit a biblio record
    2) See that mandatory subield text is red (#C00)
    3) Same in autority record edition
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit c926c934ad6a607f80d6afac9553761cca511ea2
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>

commit 773f7ca461d90fef78311bb09aebc64ff47a3e33
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>

commit 916bb2a2b888873d3ace0aa9ff8aeda89c722b24
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>

commit 6ca1330e0dedd28bd0ea3808a7a0536085ba35a6
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>

commit 76cd9cd7e75539954e9840ed4f688285e566004a
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>

commit 3a00e676dc04f0b721c5c318b5006001fb16b6e6
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>

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

Summary of changes:
 C4/Reports/Guided.pm                               |    2 +-
 admin/preferences.pl                               |    2 +-
 circ/returns.pl                                    |   28 +++++++++++---------
 koha-tmpl/intranet-tmpl/prog/css/addbiblio.css     |    4 +++
 .../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 +++--
 8 files changed, 28 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list