]> git.koha-community.org Git - koha.git/commit
Bug 11032: Check a valid MARC::Record passed to Biblio
authorColin Campbell <colin.campbell@ptfs-europe.com>
Thu, 10 Oct 2013 17:06:14 +0000 (18:06 +0100)
committerFridolin SOMERS <fridolin.somers@biblibre.com>
Tue, 24 Dec 2013 10:50:36 +0000 (11:50 +0100)
commitb8df5e3976da663cb9193b2bf059099503e1a898
treebdd914c09ee112395466bd1465eb9d9006ceb4d8
parent6d16356a1a5bf08c83b7e00dbbfa84ae3bf3d02b
Bug 11032: Check a valid MARC::Record passed to Biblio

Intermittently problems in the calling environment
cause a C4::Biblio routine to be called with an undefined
MARC::Record object. This results in the process
dying and returning to the end user a low level
message such as 'cannot call method x on an undefined
object'.

For exported subroutines taking a MARC::Record object,
check that object is defined otherwise return a logical
return value and log a stack trace to the error log.
A couple of cases were checking but dying, this may have
unwelcome results in a persistent environment so croak has
been downgraded to carp

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Adds lots of checks for $record in various places, should
not affect behaviour.
Passed all tests and QA script, including new unit tests.
Tested adding and saving a new record.
Also tested detail and result pages without XSLT.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
(cherry picked from commit 2e0e15485ecae556b77037443af1077291fe3673)
Signed-off-by: Fridolin SOMERS <fridolin.somers@biblibre.com>
C4/Biblio.pm
t/Biblio.t [new file with mode: 0755]