[koha-commits] main Koha release repository branch new/bug_7940 created. v3.06.00-1126-g430f0ea

Git repo owner gitmaster at git.koha-community.org
Thu Apr 12 17:59:01 CEST 2012


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, new/bug_7940 has been created
        at  430f0ea6ba11ca8d9ec6f46c59a1c6eb78dbef72 (commit)

- Log -----------------------------------------------------------------
commit 430f0ea6ba11ca8d9ec6f46c59a1c6eb78dbef72
Author: Kyle M Hall <kyle at bywatersolutions.com>
Date:   Tue Apr 10 11:36:36 2012 -0400

    Bug 7940 - Placing a hold on a single item from the staff cart causes errors
    
    This is caused by the javascript function placeHold() in basket.pl
    The cause of this error is thus: when a staff member uses the cart
    to place holds on multiple items at once, the cart redirects to
    reserver/request.pl with the params 'biblionumbers' ( a string of
    biblionumbers separated by slashes ( e.g. '5/4/3/' ) and the param
    multi_hold with a value of 1.
    
    When multi_hold is enabled, request.pl splits the string 'biblionumbers'
    on those slashes and works on that list.
    
    In placeHold(), when only one item is checked, the system passes
    the param biblionumbers with a single biblionumber ( e.g. '5/' )
    and does *not* pass the multi_hold param. This causes request.pl
    to not parse the biblionumbers param, and thus reserve.pl has
    no biblionumber to work on ( hence our error here ).
    
    There are two options to resolve this:
    A) Add the multi_hold param even for a single hold from the cart.
    B) In the event of a single hold being placed from the cart,
       switch to the standard single hold url ( i.e. request.pl?biblionumber=234 )
    
    This commit resolves the situation using option B, as it seems more
    logical than using the multi-holds system for a single hold.
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    passes tests, works as advertised. Good catch!
    
    Signed-off-by: Paul Poulain <paul.poulain at biblibre.com>

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


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list