[koha-commits] main Koha release repository branch 3.20.x updated. v3.20.00-49-ga47a89f

Git repo owner gitmaster at git.koha-community.org
Tue Jun 9 01:11:19 CEST 2015


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, 3.20.x has been updated
       via  a47a89fa472e434f0dafccd991fa7991d5efe830 (commit)
       via  c0c16392b18542c733210ff5855e74492b057af1 (commit)
      from  494d824d4f0b17f423b6c585b3fb7942b830625c (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 a47a89fa472e434f0dafccd991fa7991d5efe830
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Apr 16 16:39:09 2015 +0200

    Bug 10355: paramater 'object' lost on the road
    
    Test plan:
    1) Go to any detail page in staff
    2) Click on the modification log tab
    3) Verify, that the object is prefilled with the records biblionumber
    and you can also see it as parameter in the url
    4) Click a second time on modification log to reset your search
    
    Before this patch, the object parameter was empty.
    It now contains the value of the biblionumber.
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    Work as described, no koha-qa errors
    
    http://bugs.koha-community.org/show_bug.cgi?id=10335
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit 0002126a2ab0ac38a8d3f144f446dc3ba69dab59)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit c0c16392b18542c733210ff5855e74492b057af1
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Fri Jun 5 12:01:28 2015 -0300

    Bug 14344: uninitialized value warning C4/Utils/DataTables/Members.pm
    
    The condition for the assignment depends on $searchtype to be defined
    and equal to 'contains'. So this change doesn't change the semantics.
    
    -            if $term !~ /^%/
    -                and $searchtype eq "contain";
    +            if (defined $searchtype) && $searchtype eq "contain"
    +                && $term !~ /^%/;
    
    To test:
    - Home -> Circulation -> Checkout
    - Search for a user that does not exist (I searched 'whywouldthisexist') on the intranet interface.
    - Look at the intranet logs
    => FAIL: you get "Use of uninitialized value $searchtype in string eq at.,,"
    - Apply the patch
    - Repeat the search
    => SUCCESS: No warning
    - Sign off :-D
    
    NOTE: Other pages are more forgiving. Tweaked test plan.
    
    Signed-off-by: Mark Tompsett <mtompset at hotmail.com>
    
    Signed-off-by: Katrin Fischer <katrin.fischer.83 at web.de>
    Signed-off-by: Tomas Cohen Arazi <tomascohen at gmail.com>
    (cherry picked from commit d82aeb352f35ec37fdd62fed7e9a713168a21c28)
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

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

Summary of changes:
 C4/Utils/DataTables/Members.pm                                |    4 ++--
 koha-tmpl/intranet-tmpl/prog/en/includes/biblio-view-menu.inc |    2 +-
 tools/viewlog.pl                                              |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list