[koha-commits] main Koha release repository branch master updated. v3.12.00-beta1-948-g29689de

Git repo owner gitmaster at git.koha-community.org
Fri Aug 16 18:47:27 CEST 2013


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  29689de399a8927547c36e53461c7766ecc604f0 (commit)
      from  b0ea3be36c8e7ae6dc6f28820b1c26fc909d9039 (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 29689de399a8927547c36e53461c7766ecc604f0
Author: Jonathan Druart <jonathan.druart at biblibre.com>
Date:   Thu Apr 11 12:00:45 2013 +0200

    Bug 10028: fix how ModReceiveOrder() calls NewOrder()
    
    In C4::Acquisition::ModReceiveOrder, a call to NewOrder is badly used.
    
    NewOrder returns ($basketno, $ordernumber) but in ModReceiveOrder the
    ordernumber is got with
      my $ordernumber = NewOrder( $args );
    
    It works because:
    sub t{
        return ("a", "b");
    }
    my $a = t();
    say $a;
    
    Will display 'b'.
    
    But it is not really clear.
    
    Test plan:
    Check that there is no regression for partial receives.
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Galen Charlton <gmc at esilibrary.com>

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

Summary of changes:
 C4/Acquisition.pm |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list