Skip to content
Snippets Groups Projects
Commit d6c01e88 authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Fix the language record fetching

parent 13cac26a
No related branches found
No related tags found
1 merge request!13Feature upgrade to9 lts
......@@ -218,7 +218,7 @@ class BackendService {
public static function getLanguages(): array {
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('sys_language');
$rows = $queryBuilder->select('*')
->from('sys_language');
->from('sys_language')->execute()->fetchAll();
$languages = [];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment