[koha-commits] main Koha release repository branch 19.05.x updated. v19.05.02-108-g983dd03

Git repo owner gitmaster at git.koha-community.org
Fri Aug 9 15:01:32 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, 19.05.x has been updated
       via  983dd03efafc271a01f89603937c0b3af0c84510 (commit)
       via  23da3fd6148a5c320debdb7c4b964bb74d887e18 (commit)
       via  a495eb778928607048894b904c273b6115a12465 (commit)
       via  aa7f80a740d4b8b76c9485cf72d204859121927b (commit)
       via  a234c18b960399d02006ee3ba815a3f273096a39 (commit)
       via  5ab8a4c13ed843b540274f4856fdf3e83202bc03 (commit)
      from  936f1450b802a6d00e6bf681eb60f3844ff865d0 (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 983dd03efafc271a01f89603937c0b3af0c84510
Author: Alex Arnaud <alex.arnaud at biblibre.com>
Date:   Thu Jun 6 17:05:24 2019 +0200

    Bug 22249: Mana - Move comment process in a dedicated sub
    
    Test plan:
      - Go to a subscription's detail page,
      - click on "Report mistake" => "New comment",
      - check Koha logs file,
      - you can see the following warning:
        Can't locate object method "find" via package "Koha::Resource_comments"
      - Apply this patch,
      - same test again,
      - no wraning
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit a72d8dbb0ff3aa6f56aafcca2c3a0c820b5325f6)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 23da3fd6148a5c320debdb7c4b964bb74d887e18
Author: Martin Renvoize <martin.renvoize at ptfs-europe.com>
Date:   Mon Jul 15 15:06:14 2019 +0100

    Bug 23316: (follow-up) for bug 22521 to fix GetFine
    
    We changed the way we classify fines with bug 22521 but missed one
    instance.
    
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit b43602ee7d2cf5407b987224be8554251a9f80f6)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a495eb778928607048894b904c273b6115a12465
Author: Josef Moravec <josef.moravec at gmail.com>
Date:   Thu Jul 25 17:50:57 2019 +0000

    Bug 23363: (QA follow-up) Fix indentation
    
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 68f128939b940f167fc14c3060a52da16b13a253)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit aa7f80a740d4b8b76c9485cf72d204859121927b
Author: Liz Rea <wizzyrea at gmail.com>
Date:   Tue Jul 23 10:22:20 2019 -0500

    Bug 23363: Fix Internal Server Error when clicking on shipment cost invoice link
    
    To test:
    
    On the fund detail page, have some shipment costs associated with a fund
    
    an example would be cgi-bin/koha/acqui/spent.pl?fund=<your fund>&fund_code=<your
    code>
    
    Click the link for the fund, without this patch it will give an internal
    server error.
    
    With this patch, the shipment invoice will be loaded.
    Signed-off-by: Jason DeShaw <JDeShaw at fargolibrary.org>
    Signed-off-by: Laurel Moran <lmoran at sdlawlibrary.org>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit be4c4f8040ba9485f1cc72937ae77027568c0779)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit a234c18b960399d02006ee3ba815a3f273096a39
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Fri Jun 28 11:04:21 2019 -0400

    Bug 23229: (QA follow-up) Fix indentation
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit 95b6f56026c0381ffdd49a25bba9b5c170e141dc)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

commit 5ab8a4c13ed843b540274f4856fdf3e83202bc03
Author: Andrew Isherwood <andrew.isherwood at ptfs-europe.com>
Date:   Fri Jun 28 10:24:32 2019 +0100

    Bug 23229: Only load ILL table JS when needed
    
    This patch prevents the JS associated with the ILL table from loading
    unless we're actually displaying the table. This has the knock on effect
    of not causing the "get all ILL requests" API request to fire when
    loading any ILL page.
    
    Test plan:
    
    - Go to "ILL requests" page
    - TEST: Observe that the table loads all ILL requests
    - Go to the "New ILL request" page for any installed backend
    - TEST: Check the browser dev tools "Network" panel, observe that the
    /api/v1/illrequests?embed=metadata,patron,capabilities,library,status_alias,comments,requested_partners
    request is not made.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Josef Moravec <josef.moravec at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    (cherry picked from commit f79da166ae7f910648266b98d89f19f4307d10ea)
    Signed-off-by: Fridolin Somers <fridolin.somers at biblibre.com>

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

Summary of changes:
 C4/Overdues.pm                                     |    2 +-
 Koha/SharedContent.pm                              |   23 +++++++++++---
 acqui/spent.pl                                     |    3 +-
 .../prog/en/includes/mana/mana-comment-status.inc  |    1 -
 .../intranet-tmpl/prog/en/modules/acqui/spent.tt   |    2 +-
 .../prog/en/modules/ill/ill-requests.tt            |    6 ++--
 koha-tmpl/intranet-tmpl/prog/js/mana.js            |   15 +++++----
 svc/mana/share                                     |   32 +++-----------------
 t/db_dependent/Koha/SharedContent.t                |    6 +++-
 9 files changed, 44 insertions(+), 46 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list