Skip to content

Commit

Permalink
[RELEASE] 6.1.2
Browse files Browse the repository at this point in the history
- Bugfix: Nested rootlines are not respected (thanks to @kraemer-igroup)
- Bugfix TYPO3 > 8.4: Repository can´t find legal text entries where
  • Loading branch information
pascal20997 committed Nov 28, 2018
1 parent 8c598a6 commit 2191512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/LegalTextRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public function findByWebsiteRoot($websiteRoot)
->select('l.uid', 'l.content', 'l.configuration', 'c.global')
->from(self::TABLE, 'l')
->leftJoin('l', 'tx_avalex_configuration', 'c', 'c.uid = l.configuration')
->where($this->getQueryBuilder(self::TABLE)->expr()->eq('c.website_root', (int)$websiteRoot))
->where($this->getQueryBuilder(self::TABLE)->expr()->inSet('c.website_root', (int)$websiteRoot))
->orWhere($this->getQueryBuilder(self::TABLE)->expr()->eq('c.global', 1))
->execute()
->fetchAll();
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
'uploadfolder' => false,
'createDirs' => '',
'clearCacheOnLoad' => 0,
'version' => '6.1.1',
'version' => '6.1.2',
'constraints' =>
array(
'depends' =>
Expand Down

0 comments on commit 2191512

Please sign in to comment.