Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Cleaned up and refactored Code
* [PR-69](https://github.com/itk-dev/itk_pretix/pull/69)
Added “Registration deadline” to date
*[72](https://github.com/itk-dev/itk_pretix/pull/72)
Add drupal 11 compatibility

## [1.2.3]

Expand Down
2 changes: 1 addition & 1 deletion itk_pretix.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'ITK Pretix'
type: module
description: 'A module using pretix API to generate events from field values'
# We're autowiring services and need Drupal 10.2 or newer (cf. https://www.drupal.org/node/3366757)
core_version_requirement: ^10.2
core_version_requirement: ^10.2 || ^11
package: 'ITK'
dependencies:
- drupal:field
2 changes: 1 addition & 1 deletion src/Pretix/OrderHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function getOrder($organizer, $event, $orderCode) {
$subEvents = $this->pretixClient->getSubEvents($event);
}
catch (\Exception $exception) {
throw $this->clientException('Cannot get sub-events', $exception);
throw $this->clientException('Cannot get sub-events', $exception);
}
// Index by id.
$subEvents = $this->indexCollection($subEvents, 'id');
Expand Down