Skip to content

Commit

Permalink
[TASK] Make groups available immediately after login, fixes AOEpeople#60
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Bülter committed Jun 17, 2021
1 parent 5d79a0c commit 5f69ff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Service/FeEntityService.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected function findEntitiesWithIpAuthentication($table)
{
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable($table);
$queryBuilder->getRestrictions()->removeAll();
$entities = $queryBuilder->select('uid','pid')
$entities = $queryBuilder->select('*')
->from($table)
->where(
$queryBuilder->expr()->gt('tx_aoeipauth_ip', '0' . EnableFieldsUtility::enableFields($table))
Expand Down

0 comments on commit 5f69ff3

Please sign in to comment.