[koha-commits] main Koha release repository branch 19.11.x updated. v19.11.03-50-g710a372200

Git repo owner gitmaster at git.koha-community.org
Fri Mar 13 01:28:30 CET 2020


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  710a37220017025c039d64a06a307130bfdcae67 (commit)
       via  fe86bf2b6c7a0afb8be0a0030f8013dd9f5d7f85 (commit)
       via  7535b5072329cc38ef7f0cef2616d51b289efb0b (commit)
       via  aa8cdebe0c6b9b0dfb0819648e217553e675d2f5 (commit)
       via  ed641c85571df0461b4f0cbf5a6ba2b3363a0b5d (commit)
      from  b09ca43dec81209d08abf45d75e9e5dea9f4b907 (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 710a37220017025c039d64a06a307130bfdcae67
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Nov 26 09:27:21 2019 +0100

    Bug 24110: Do not html filter TT vars when dumped
    
    DumpTemplateVarsIntranet and DumpTemplateVarsOpac are devs tools to
    display the variables sent to the template. They should not be filtered
    otherwise it's getting complicate to read.
    
    For instance: $VAR1 = { var => val }
    
    Test plan:
    Turn DumpTemplateVarsIntranet on
    Go to the main page
    Show the source of the page
    Confirm that the variable are displayed as it and not filtered
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit fe86bf2b6c7a0afb8be0a0030f8013dd9f5d7f85
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Jan 24 17:33:48 2020 +0000

    Bug 24514: Add option to exclude title from patron-title.inc
    
    Without this patch sorting by patron name on the 'holds awaiting
    pickup' report sorted by title, surname, firstname. With this
    patch the list will sort by surname, firstname, ignoring the title.
    
    To test:
    - generate and capture a hold for a patron named "Mr. A A"
    - generate and capture a hold for a patron named "A A"
    - generste and capture a hold for patron named "Mr. B B"
    - generste and capture a hold for patron named "B B"
    - go to holds awaiting pickup
    - sort by patron name ascending
    - holds sort Mr. A, Mr. B, A, B
    - sort by patron name descending
    - holds sort B, A, Mr. B, Mr. A
    - APPLY PATCH
    - Reload holds awaiting pickup
    - Confirm holds sort on Surname
    
    Signed-off-by: Andrew Fuerste-Henry <andrew at bywatersolutions.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit 7535b5072329cc38ef7f0cef2616d51b289efb0b
Author: Aleisha Amohia <aleishaamohia at hotmail.com>
Date:   Sun Feb 9 21:55:01 2020 +0000

    Bug 18933: Allow OPAC messaging SMS number to be set to empty
    
    To test:
    1) Ensure EnhancedMessagingPreferences is enabled and
    EnhancedMessagingPreferencesOPAC is set to Show. Set SMSSendDriver to
    Email
    2) Log in to OPAC, go to your messaging tab
    3) Set an SMS number if you havent already
    4) Try to remove it (set to empty)
    5) Notice that it says the number has been updated, but it has not
    been set to empty
    6) Apply patch and refresh page
    7) Attempt to set the number to empty
    8) Confirm this is successful
    
    Sponsored-by: Catalyst IT
    Signed-off-by: David Nind <david at davidnind.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit aa8cdebe0c6b9b0dfb0819648e217553e675d2f5
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Mon Dec 16 18:50:16 2019 +0100

    Bug 24388: Remove uneeded test in lateorders.tt
    
    The budget_lock is never set (and has never been).
    
    Test plan:
    For QAer only, make sure this never worked
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

commit ed641c85571df0461b4f0cbf5a6ba2b3363a0b5d
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Wed Feb 12 15:49:17 2020 +0100

    Bug 24549: Do not set "last patron" cookie if showLastPatron is disabled
    
    If the showLastPatron syspref is disabled, we should not store the 3
    cookies we use for this feature.
    
    Test plan:
    0/ Do not apply this patch
    1/ Turn off showLastPatron
    2/ Search for a patron, click on a result
    3/ Open the cookie list of your browser
    => You see 3 cookies named lastborrowercard, lastborrowername,
    lastborrowernumber
    4/ Remove them
    5/ Apply the patch
    6/ Reload the patron detail page
    => The 3 cookies are not created
    7/ Turn the pref on
    8/ Reload the patron detail page
    => The 3 cookies are created
    9/ Eat one of them.
    
    QA note: it's a bit dirty, we should do that JS side, but
    staff-global.js is too widely used to make the change easy. Any other
    suggestions welcomed.
    
    Signed-off-by: Owen Leonard <oleonard at myacpl.org>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>
    
    Signed-off-by: Joy Nelson <joy at bywatersolutions.com>

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

Summary of changes:
 koha-tmpl/intranet-tmpl/prog/en/includes/circ-menu.inc      |  8 +++++---
 koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc  |  3 ++-
 koha-tmpl/intranet-tmpl/prog/en/includes/patron-title.inc   |  1 +
 koha-tmpl/intranet-tmpl/prog/en/includes/waiting_holds.inc  |  2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/acqui/lateorders.tt |  4 +---
 koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc |  3 ++-
 opac/opac-messaging.pl                                      | 11 ++++-------
 7 files changed, 16 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list