Bug 2505 : Switch on warnings in circ/returns.pl
Removed a compile time warning caused by a void context in a bit of too clever obscure code Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
6078c1acf6
commit
e7971380e8
1 changed files with 3 additions and 2 deletions
|
@ -28,7 +28,7 @@ script to execute returns of books
|
|||
=cut
|
||||
|
||||
use strict;
|
||||
#use warnings; FIXME - Bug 2505
|
||||
use warnings;
|
||||
|
||||
use CGI;
|
||||
use DateTime;
|
||||
|
@ -223,7 +223,8 @@ if ($barcode) {
|
|||
#
|
||||
( $returned, $messages, $issueinformation, $borrower ) =
|
||||
AddReturn( $barcode, $userenv_branch, $exemptfine, $dropboxmode); # do the return
|
||||
my $homeorholdingbranchreturn = C4::Context->preference('HomeOrHoldingBranchReturn') or 'homebranch';
|
||||
my $homeorholdingbranchreturn = C4::Context->preference('HomeOrHoldingBranchReturn');
|
||||
$homeorholdingbranchreturn ||= 'homebranch';
|
||||
|
||||
# get biblio description
|
||||
my $biblio = GetBiblioFromItemNumber($itemnumber);
|
||||
|
|
Loading…
Reference in a new issue