Bug 14695 [QA Followup] - Fix issues found by QA script
authorKyle M Hall <kyle@bywatersolutions.com>
Sat, 3 Sep 2016 00:26:03 +0000 (00:26 +0000)
committerKyle M Hall <kyle@bywatersolutions.com>
Sat, 3 Sep 2016 00:28:57 +0000 (00:28 +0000)
C4/Reserves.pm
Koha/Holds.pm
reserve/placerequest.pl

index 537d061..876580e 100644 (file)
@@ -519,7 +519,7 @@ sub CanItemBeReserved {
         $ruleitemtype = '*';
     }
 
-    my $item = Koha::Items->find( $itemnumber );
+    $item = Koha::Items->find( $itemnumber );
     my $holds = Koha::Holds->search(
         {
             borrowernumber => $borrowernumber,
index b5c24aa..235f1d4 100644 (file)
@@ -65,6 +65,7 @@ Finally, if the patron has no holds, it will return
 undef which indicateds the patron may select either
 record or item level holds, barring any other rules
 that would prevent one or the other.
+
 =cut
 
 sub forced_hold_level {
index ee916ea..92f3c48 100755 (executable)
@@ -134,5 +134,5 @@ elsif ( $borrower eq '' ) {
 
     # Not sure that Dump() does HTML escaping. Use firebug or something to trace
     # instead.
-    #  print $input->Dump;
+    #print $input->Dump;
 }