[koha-commits] main Koha release repository branch master updated. v19.05.00-62-g15dcde2

Git repo owner gitmaster at git.koha-community.org
Thu Jun 13 13:27:26 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  15dcde21fe9b34d287844aab75426e6387c7b4cf (commit)
       via  a3e047f638ac7e6095d56c064f0e6cb8038a8524 (commit)
       via  7d7c8c12e70295f4dd15a3435235c81539c333f5 (commit)
       via  ac41566cddb737c19282bc577cf31882f168384b (commit)
       via  07d6e9f142a588f26c52582d9b5d99b714fa1fd7 (commit)
       via  3de89b98ce373818c4b6f5a0a90b8786996e6cfe (commit)
       via  18f2074f8df8598527ae8e126c4efc7f3be000e0 (commit)
      from  39e4c6c5d791853985773e4032357372f77d7587 (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 15dcde21fe9b34d287844aab75426e6387c7b4cf
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Jun 10 13:42:18 2019 +0000

    Bug 22585: (follow-up) Fix additional occurences
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit a3e047f638ac7e6095d56c064f0e6cb8038a8524
Author: Justin Rittenhouse <jrittenh at nd.edu>
Date:   Fri May 31 16:37:11 2019 +0000

    Bug 22585: remove double-escape for CAS URL
    
    The return URL that is part of the link to CAS login is double-escaped on the staff login page.
    
    It appears that this is the same issue as bug 21973 but in the staff intranet template.  I have attached an identical patch for the intranet auth.tt file.
    
    Signed-off-by: Nick Clemens <nick 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>

commit 7d7c8c12e70295f4dd15a3435235c81539c333f5
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Thu Jun 16 11:08:59 2016 +0000

    Bug 16750: Redirect from selectbranchprinter.pl to additem.pl causes software error
    
    How to reproduce:
    1) Edit and save an item in the items editor
    2) You should be redirected back to the items editor, note that the
    biblionumber is passed in the url
    3) Choose "set library" from the upper right hand pulldown on the page
    4) Choose a different library, click submit
    5) You should get the error message:
    Software error:
    
    Can't call method "fields" on an undefined value at
    /home/vagrant/kohaclone/cataloguing/additem.pl line 736.
    
    Test Plan:
    1) Apply this patch
    2) Follow plan above
    3) No software error should occur at step 5
    
    Signed-off-by: Marc Véron <veron at veron.ch>
    Signed-off-by: Nick Clemens <nick 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>

commit ac41566cddb737c19282bc577cf31882f168384b
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Mon Jun 10 13:34:18 2019 +0000

    Bug 14794: (follow-up) Add tooltip to filter box
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 07d6e9f142a588f26c52582d9b5d99b714fa1fd7
Author: Nick Clemens <nick at bywatersolutions.com>
Date:   Fri Jun 7 14:53:16 2019 +0000

    Bug 14794: Display JS tooltip whenever dateofbirth is being searched
    
    This updates the code that adds a tooltip for the correct date format
    to display after the initial search
    
    To test:
    1 - Do a patron search, choosing date of birth as the search field
    2 - Note on choosing that field you get a tooltip defining the format
    3 - Do a search
    4 - Note tooltip is gone, but date fo birth is still selected as the field to search
    5 - Apply patch, reload
    6 - Note tooltip shows after initial search and until field is changed
    
    Signed-off-by: Maryse Simard <maryse.simard at inlibro.com>
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 3de89b98ce373818c4b6f5a0a90b8786996e6cfe
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jun 11 10:44:25 2019 -0500

    Bug 23095: Correctly display circulation rules (0 vs undef)
    
    From the following commit:
      commit d1303ca834dd0b08fc1d44476cfbbb8b729b6165
      Bug 18925: (follow-up) Fix null/empty behavior
    
    The global test must have been adjusted as well to catch empty strings.
    
    Actually we are expecting the plugin to return undef but the template variable contains an empty string.
    
    So the test should only be [% IF var != '' %] instead of [% IF var.defined && var != '' %]
    but I prefer to keep it as it for now.
    
    Test plan:
    In the section "Default checkout, hold policy by patron category"
    Set total checkouts = blank
        total on-site checkouts = blank
        total holds = 0
    Save
    => Without this patch the line will not appear
    => With this patch applied there must be "unlimited, unlimited, 0"
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at theke.io>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

commit 18f2074f8df8598527ae8e126c4efc7f3be000e0
Author: Jonathan Druart <jonathan.druart at bugs.koha-community.org>
Date:   Tue Jun 11 09:24:28 2019 -0500

    Bug 23093: (bug 22318 follow-up) Use placeholders in query moving OpacNavRight
    
    Placeholders must be used (!) in all SQL queries.
    
    Test plan:
    1/ % git checkout 0c95e22afe13349b60d134217fce6718bfa9727f # commit before bug 22318
    2/ Edit the pref OpacNavRight with something with "
      just a " and more '
    3/ git checkout master
    4/ restart_all
    5/ run updatedatabase.pl
    => Boom and the content of the pref has been lost
    6/ Repeat 1 to 3
    7/ Apply this patch
    8/ run updatedatabase.pl
    => The pref has been correctly moved to opac_news
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    Signed-off-by: Nick Clemens <nick at bywatersolutions.com>
    Signed-off-by: Martin Renvoize <martin.renvoize at ptfs-europe.com>

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

Summary of changes:
 installer/data/mysql/updatedatabase.pl             |    2 +-
 .../prog/en/modules/admin/smart-rules.tt           |    2 +-
 koha-tmpl/intranet-tmpl/prog/en/modules/auth.tt    |    4 +-
 .../prog/en/modules/cataloguing/additem.tt         |    2 +-
 koha-tmpl/intranet-tmpl/prog/js/members-menu.js    |   43 +++++++++++++-------
 .../opac-tmpl/bootstrap/en/modules/opac-auth.tt    |    4 +-
 6 files changed, 35 insertions(+), 22 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list