Skip to content

Commit 860615e

Browse files
authored
Merge pull request #15 from dacostafilipe/mysql-mode-ansi-quotes-support
MySQL sql_mode ANSI_QUOTES support
2 parents bbdb9cb + 9034d17 commit 860615e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Classes/Domain/Repository/FeGroupsRepository.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function getAllGroupsWithIpConfiguration(): array
8787
return (array)$queryBuilder
8888
->select('*')
8989
->from(self::TABLE_NAME)
90-
->where('ip_mask != ""')
90+
->where('ip_mask != \'\'')
9191
->executeQuery()
9292
->fetchAllAssociative();
9393
}

0 commit comments

Comments
 (0)