[koha-commits] main Koha release repository branch 3.10.x updated. v3.10.05-18-g43e6791

Git repo owner gitmaster at git.koha-community.org
Wed Apr 24 12:14:32 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, 3.10.x has been updated
       via  43e679156a5250e79de0accca960e4836aa55385 (commit)
       via  24f42ba74ce0fe24b267ab9f6d8bd8064897b172 (commit)
       via  ebd666c4d2ee07dd60c11513e1bcc1441c01c177 (commit)
       via  6655d6e2d02df18fe29ece1865929684fa276265 (commit)
       via  8146604253622783a26093e1decc57cf14828a36 (commit)
       via  26038d897ebdda32f2bdf2435f82d15efb70c0c7 (commit)
      from  6002812a220115d9b5b7b083ec931d9098f7af11 (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 43e679156a5250e79de0accca960e4836aa55385
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Wed Feb 27 15:37:39 2013 +0100

    Bug 9720 : uninitialized value warnings in circulation (followup 1)
    
    This patch corrects several uninitialized value errors.
    
    Test plan:
    - Edit a borrower
    - Enter a surname using lowercase (it will be displayed uppercase by CSS) and save
    => Borrower surname is uppercase
    - Edit an organisation (depends on borrower category)
    - Enter a surname using lowercase (it will be displayed uppercase by CSS) and save
    => Borrower surname is uppercase
    - Go to a borrower page who has today issues
    - Click on More/Export today's checked in barcodes
    => You get a file to dowload
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 24f42ba74ce0fe24b267ab9f6d8bd8064897b172
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Wed Feb 27 15:02:49 2013 +0100

    Bug 9720 : uninitialized value warnings in circulation
    
    This patch corrects several uninitialized value errors.
    
    Test plan:
    - Go to check out page
    - Check that issues and old issues are in different tables
    - Check that author is diplayed if exists
    - Check that patron address is displayed if exists
    - Perform a checkout
    
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>

commit ebd666c4d2ee07dd60c11513e1bcc1441c01c177
Author: Fridolyn SOMERS <fridolyn.somers at biblibre.com>
Date:   Thu Mar 7 11:54:57 2013 +0100

    Bug 9759: last subfield can be deleted
    
    In authorities and biblios editors, a repeatable subfield can be deleted (small icon next to input).
    Clone subfields are really deleted but last existing subfield is just set empty instead of deleted.
    But when same field is repeated, the last subfield can be deleted.
    
    This patch corrects this, last subfield of a field, even repeated, can not be deleted.
    
    Test plan :
    - Edit a biblio
    - Choose a repeatable field with a repeatable subfield : ie 600 and $x
    - Edit 600, enter a text in $x : ie "subA"
    - Clone $x
    - Delete second $x
    => second $x is deleted
    - Delete first $x
    => $x is not deleted but set empty
    - Edit 600, enter a text in $x : ie "subA"
    - Clone 600
    - Edit second 600, enter a text in $x : ie "subB"
    - Clone $x of second 600
    - Delete second $x of second 600
    => second $x of second 600 is deleted
    - Delete first $x of second 600
    => with this patch : first $x of second 600 is set empty
    => without this patch : first $x of second 600 is deleted, second 600 has no $x anymore
    Perform same test plan on an authority.
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 6655d6e2d02df18fe29ece1865929684fa276265
Author: Adrien Saurat <adrien.saurat at biblibre.com>
Date:   Thu Mar 21 16:05:27 2013 +0100

    Bug 7241, follow-up: viewlog link for circulation
    
    Fixes a few things about the CIRC link in viewlogs:
    - "itemnumber=" instead of "item="
    - anchor #item was filled with the wrong field
    - tooltip now indicates "item" instead of "biblio"
    
    Signed-off-by: Adrien Saurat <adrien.saurat at biblibre.com>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 8146604253622783a26093e1decc57cf14828a36
Author: Adrien Saurat <adrien.saurat at biblibre.com>
Date:   Thu Mar 21 14:30:46 2013 +0100

    Bug 7241 follow-up: DB changes
    
    Reset timestamp modification on update after patch application.
    Give more information about the log history fix.
    
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

commit 26038d897ebdda32f2bdf2435f82d15efb70c0c7
Author: Adrien Saurat <adrien.saurat at biblibre.com>
Date:   Tue Jan 22 14:46:38 2013 +0100

    Bug 7241: circulation action logs record biblionumber instead of item number
    
    Issue log and and circulation logs are incorrectly recording biblionumber instead of item number, creating incorrect logs.
    This patch corrects this, and modifies the action_logs table in two ways:
    - the timestamp is not updated anymore with UPDATES (but still automatically filled when INSERTing)
    - to partially correct the broken logs, the log history is filled with the first found item for each biblio
    
    Signed-off-by: Kyle M Hall <kyle at bywatersolutions.com>
    Signed-off-by: Marcel de Rooy <m.de.rooy at rijksmuseum.nl>
    Signed-off-by: Chris Cormack <chrisc at catalyst.net.nz>

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

Summary of changes:
 C4/Circulation.pm                                  |    4 ++--
 circ/circulation.pl                                |   20 ++++++++++++--------
 installer/data/mysql/updatedatabase.pl             |    9 +++++++++
 koha-tmpl/intranet-tmpl/prog/en/js/cataloging.js   |    4 ++--
 .../intranet-tmpl/prog/en/modules/tools/viewlog.tt |    2 +-
 members/memberentry.pl                             |    4 ++--
 members/readingrec.pl                              |    3 ++-
 7 files changed, 30 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list