Skip to content

Commit

Permalink
Merge branch 'release/27.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Dec 12, 2024
2 parents 2e7f7f7 + 59f98ea commit 948448e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Classes/Domain/Model/Usergroup.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Usergroup extends AbstractEntity
/**
* @var ObjectStorage<Usergroup>
*/
protected ObjectStorage $subgroup;
protected ?ObjectStorage $subgroup = null;

public function __construct(string $title = '')
{
Expand Down Expand Up @@ -67,6 +67,9 @@ public function removeSubgroup(Usergroup $subgroup): self

public function getSubgroup(): ObjectStorage
{
if ($this->subgroup === null) {
$this->subgroup = new ObjectStorage();
}
return $this->subgroup;
}

Expand Down
1 change: 1 addition & 0 deletions Documentation/Changelog/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

| Version | Date | State | Description |
|------------|------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 27.0.1 | 2024-12-12 | Bugfix | Prevent type exception in UserGroup model |
| 27.0.0 | 2024-12-08 | Task | Support TYPO3 13 (and 12 and drop support for 11), some small bugfixes |
| 26.3.1 | 2024-10-16 | Bugfix | Show correct number of links in dashboard, fix newsletter filter by usergroup |
| 26.3.0 | 2024-10-11 | Feature | Increase number of frontend groups options when searching for a string when adding a new newsletter in backend module |
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
'title' => 'luxletter - TYPO3 Email Marketing Newsletter Tool',
'description' => 'Free newsletter extension for TYPO3 for an individual email marketing. A lot of analytics and modern concepts. Works with and without EXT:lux.',
'category' => 'plugin',
'version' => '27.0.0',
'version' => '27.0.1',
'author' => 'Alex Kellner',
'author_email' => '[email protected]',
'author_company' => 'in2code.de',
Expand Down

0 comments on commit 948448e

Please sign in to comment.