[koha-commits] main Koha release repository branch master updated. v19.05.00-22-g4ae8542

Git repo owner gitmaster at git.koha-community.org
Tue Jun 4 11:27:39 CEST 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  4ae854242839ebe9871b65fe0add2241eb4ae0b7 (commit)
       via  f6f86a79d623ac478e2636e2d0cc2272006fe5f0 (commit)
       via  76a64f8046af820b8be57fbc8d65483259a63f6c (commit)
       via  2b0347084ce8daa0a11ff4bdfd2e9f8442e65ffb (commit)
       via  d5520510602c123d1ea8d7dc9a9d874995d200c3 (commit)
       via  851d41ab6b9ec28901086d6a6ce15b3fd589182a (commit)
       via  b40e58343ef65aabe0a575a0b3f842b5e22a3600 (commit)
       via  ac423d5dcf2c7503a8ca78cbafdb94dfc43dfdb6 (commit)
       via  2c25016a8e17b52e23c3d9806264e141b6426254 (commit)
      from  66877b780a775daf135ef1137364d76f67166e61 (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 4ae854242839ebe9871b65fe0add2241eb4ae0b7
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Tue Jun 4 10:06:46 2019 +0100

    Bug 22960: DBRev 19.06.00.001
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit f6f86a79d623ac478e2636e2d0cc2272006fe5f0
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Tue Jun 4 09:48:59 2019 +0100

    Bug 22960: (RM follow-up) Correct a further typo
    
    "This a list" changed to "This is a list"
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 76a64f8046af820b8be57fbc8d65483259a63f6c
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Sun Jun 2 09:18:00 2019 +0000

    Bug 22960: (QA follow-up) Fix another tiny typo
    
    This only seems to appear in the .pref file:
    
    ...pairs. the => ... pairs. The
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 2b0347084ce8daa0a11ff4bdfd2e9f8442e65ffb
Author: Katrin Fischer <katrin.fischer.83 at web.de>
Date:   Mon May 27 20:34:33 2019 +0000

    Bug 22960: Fix the same typo on db level for existing and new installations
    
    Seriously trying to kill the typo everywhere:
    - Check your DB with a report:
      select * from systempreferences where variable = 'UpdateItemLocationOnCheckin';
    - Verify the typo in the explanation column: locaiton
    - Apply patch and run database update
    - Verify the typo is fixed
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit d5520510602c123d1ea8d7dc9a9d874995d200c3
Author: Owen Leonard <oleonard at myacpl.org>
Date:   Wed May 22 12:23:47 2019 +0000

    Bug 22960: Typo found in circulation.pref in UpdateItemLocationOnCheckin preference
    
    This patch corrects a typo in circulation.pref in the description of the
    UpdateItemLocationOnCheckin preference.
    
    To see the problem, go to Administration -> System preferences ->
    Circulation and look at the description for the
    UpdateItemLocationOnCheckin preference:
    
    "The special term _BLANK_ may be used on either side of a value pair to
    update or remove the location from items with no locaiton assigned."
    
    Note the misspelling "locaiton."
    
    To test, apply the patch and refresh the circulation preferences page.
    The typo should be fixed.
    
    Signed-off-by: Bin Wen <bin.wen at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 851d41ab6b9ec28901086d6a6ce15b3fd589182a
Author: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
Date:   Wed May 29 13:46:15 2019 +0000

    Bug 23006: Cannot use inventory with barcodes containing special chars
    
    If a barcode contains special characters like $, the regex in inventory
    does no longer work.
    This fix (as suggested by Jonathan) replaces the regex by a eq compare.
    
    Test plan:
    Pick one barcode and add a $ somewhere in the middle, say 123$456.
    Include this barcode in a barcode file for inventory.
    Run inventory on that file and verify that barcode was read and datelastseen
    was updated. The barcode should not be reported as missing (not scanned).
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Katrin Fischer <katrin.fischer at bsz-bw.de>
    Signed-off-by: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit b40e58343ef65aabe0a575a0b3f842b5e22a3600
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Sep 12 09:38:39 2018 -0700

    Bug 19457: Handle 'PREVISSUE' return by CanBookBeIssued from SIP (CheckPrevCheckout)
    
    If CheckPrevCheckout is set to Do, then checkouts are blocked at the SIPServer
    
    To test:
    - Do not apply this patch
    - Set CheckPrevCheckout to "Do", or "Unless overridden, do"
    Verify the SIP server is blocking checkouts with this setting set
    - Apply this patch
    - Note that the checkout is now allowed, with a screen message telling
    the borrower they've issued the item before.
    
    Signed-off-by: Liz Rea <wizzyrea 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 ac423d5dcf2c7503a8ca78cbafdb94dfc43dfdb6
Author: Aleisha Amohia <aleishaamohia at hotmail.com>
Date:   Fri Dec 14 02:05:36 2018 +0000

    Bug 11492: (follow-up) Don't pass publisheddatetext param to NewIssue
    
    I have removed publisheddatetext as a param from my patch, but only in
    the places where my patch added it. Any other instance already existed
    before my patch.
    
    Signed-off-by: Liz Rea <wizzyrea 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 2c25016a8e17b52e23c3d9806264e141b6426254
Author: Aleisha Amohia <aleishaamohia at hotmail.com>
Date:   Fri Dec 7 01:03:42 2018 +0000

    Bug 11492: Keep routing notes when receiving next serial
    
    This patch ensures the routing notes are carried over when generating
    the next serial.
    
    To test:
    1) Create a routing list for a subscription
    2) Add a borrower and a note to the routing list
    3) Generate the next serial (serials-collection.pl)
    4) Edit the routing list to see the notes
    5) Note that the notes have disappeared
    6) Apply patch
    7) Edit the routing list, add a note
    8) Generate the next serial
    9) Edit the routing list and confirm the note is still there
    10) Confirm you are still able to edit serials (serials-edit.pl) and
    routing notes stay
    
    Sponsored-by: Plant and Food Research Limited
    Signed-off-by: Nazlı Çetin <nazli at devinim.com.tr>
    Signed-off-by: Liz Rea <wizzyrea 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>

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

Summary of changes:
 C4/SIP/ILS/Transaction/Checkout.pm                   |    3 +++
 C4/Serials.pm                                        |   18 ++++++++----------
 Koha.pm                                              |    2 +-
 installer/data/mysql/sysprefs.sql                    |    2 +-
 installer/data/mysql/updatedatabase.pl               |   12 +++++++++++-
 .../en/modules/admin/preferences/circulation.pref    |    4 ++--
 serials/serials-collection.pl                        |    5 +++--
 serials/serials-edit.pl                              |    3 ++-
 t/db_dependent/Serials.t                             |    2 +-
 tools/inventory.pl                                   |    2 +-
 10 files changed, 33 insertions(+), 20 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list