Bug 9394: (follow-up) stylistic tidying
authorGalen Charlton <gmc@esilibrary.com>
Tue, 9 Jul 2013 14:58:21 +0000 (14:58 +0000)
committerGalen Charlton <gmc@esilibrary.com>
Wed, 24 Jul 2013 05:04:57 +0000 (05:04 +0000)
- fix identation in one line
- remove a commented-out warn

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Signed-off-by: Chris Cormack <chris@bigballofwax.co.nz>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
C4/Reserves.pm
C4/SIP/ILS/Transaction/Hold.pm

index 7f95a26..1f89127 100644 (file)
@@ -253,7 +253,6 @@ sub AddReserve {
 
 sub GetReserve {
     my ($reserve_id) = @_;
-    #warn "C4::Reserves::GetReserve( $reserve_id )";
 
     my $dbh = C4::Context->dbh;
     my $query = "SELECT * FROM reserves WHERE reserve_id = ?";
index 0ff842f..7e05389 100644 (file)
@@ -122,7 +122,7 @@ sub change_hold {
                return $self;
        }
        my $bibno = $bib->{biblionumber};
-  ModReserve({ biblionumber => $bibno, borrowernumber => $borrower->{borrowernumber}, branchcode => $branch });
+       ModReserve({ biblionumber => $bibno, borrowernumber => $borrower->{borrowernumber}, branchcode => $branch });
 
        $self->ok(1);
        return $self;