Skip to content

Commit

Permalink
Merge pull request #61 from PTFS-Europe/table_fix
Browse files Browse the repository at this point in the history
Table name fix for deleteBookingByID
  • Loading branch information
kylemhall committed Jan 4, 2024
2 parents 07e3d71 + 2cd9b38 commit b14056d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Koha/Plugin/Com/MarywoodUniversity/RoomReservations.pm
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ sub deleteBookingById {
my $sth = '';

my $query = "
DELETE FROM bookings WHERE bookingid = $bookingId;
DELETE FROM $bookings_table WHERE bookingid = $bookingId;
";

$sth = $dbh->prepare($query);
Expand Down

0 comments on commit b14056d

Please sign in to comment.