Skip to content

Commit

Permalink
Version 4.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bihor committed May 25, 2022
1 parent cb8556b commit 04aa02e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions Classes/Domain/Repository/SessionRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -433,10 +433,7 @@ public function getLayouts($my_value, $my_p) {
]) -> from ('pages');
if ($my_value == 0) {
$res->where(
$queryBuilder->expr()->neq(
'layout',
$queryBuilder->createNamedParameter('')
)
$queryBuilder->expr()->gt('layout', $queryBuilder->createNamedParameter(0, \PDO::PARAM_INT))
);
} else {
$res->where(
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# backendtools

version 4.2.0
version 4.2.1

8 admin tools for extensions, pages, (backend) layouts, slug, redirects, files, images and links:
extension-list, recent pages and content elements, used (backend) layouts, import redirects, check redirects,
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'state' => 'stable',
'createDirs' => '',
'clearCacheOnLoad' => false,
'version' => '4.2.0',
'version' => '4.2.1',
'constraints' => array (
'depends' => array (
'typo3' => '10.4.6-11.5.99',
Expand Down

0 comments on commit 04aa02e

Please sign in to comment.