Skip to content

Commit

Permalink
fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapjansma committed Oct 28, 2022
1 parent 4772633 commit c8f11c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description":"Isotope Stock.",
"type": "contao-bundle",
"license":"AGPL-3.0-or-later",
"version": "1.0.10",
"version": "1.0.11",
"require": {
"contao/core-bundle": "^4.9",
"isotope/isotope-core": "^2.6",
Expand Down
2 changes: 1 addition & 1 deletion src/Controller/BookingController.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public function massBooking(Request $request): Response
$booking = new BookingModel();
$booking->description = $data['description'];
$booking->date = $data['date']->getTimestamp();
$booking->period = $data['period_id']->id;
$booking->period_id = $data['period_id']->id;
$booking->product_id = $product->id;
$booking->type = $data['type'];
$booking->save();
Expand Down

0 comments on commit c8f11c3

Please sign in to comment.