add a couple semicolons
authorGalen Charlton <gmc@esilibrary.com>
Tue, 18 Oct 2011 17:25:34 +0000 (13:25 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Tue, 18 Oct 2011 17:27:43 +0000 (13:27 -0400)
Not strictly required, but may as well save a picosecond
of grief for the next person who adds to this code.

Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm

index 60563f3..3265ae3 100644 (file)
@@ -766,9 +766,9 @@ sub cancel_hold {
     $e->rollback;
 
     if ($e->requestor->id == $hold->usr) {
-        $U->create_events_for_hook('hold_request.cancel.patron', $hold, $hold->pickup_lib)
+        $U->create_events_for_hook('hold_request.cancel.patron', $hold, $hold->pickup_lib);
     } else {
-        $U->create_events_for_hook('hold_request.cancel.staff', $hold, $hold->pickup_lib)
+        $U->create_events_for_hook('hold_request.cancel.staff', $hold, $hold->pickup_lib);
     }
 
        return 1;