Skip to content

Commit

Permalink
[BUGFIX] Do not return empty array if no static_info_tables is instal…
Browse files Browse the repository at this point in the history
…led. #52
  • Loading branch information
MFabse committed Feb 15, 2024
1 parent 8671169 commit dbce2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/TCA/tx_locate_domain_model_region.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Feature is not available if EXT:static_info_tables is not loaded
if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::isLoaded('static_info_tables') === false) {
return [];
return;
}

return [
Expand Down

0 comments on commit dbce2ba

Please sign in to comment.