Skip to content

Commit 6c734dd

Browse files
authored
Merge pull request #133 from sitegeist/bugfix/checkEscapingNoFiles
[BUGFIX] Support new versions of typo3-composer-installers
2 parents fb38b17 + b5dfdcf commit 6c734dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Classes/Command/CheckContentEscapingCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,8 @@ protected function discoverTemplateFiles(): array
252252
{
253253
// All extensions in local extension directory
254254
$activeExtensions = array_filter($this->packageManager->getActivePackages(), function ($package) {
255-
return strpos($package->getPackagePath(), Environment::getExtensionsPath()) === 0;
255+
return strpos($package->getPackagePath(), Environment::getExtensionsPath()) === 0
256+
|| $package->getPackageMetaData()->getPackageType() === 'typo3-cms-extension';
256257
});
257258

258259
// All template paths (Resources/Private/)

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
'state' => 'stable',
1010
'uploadfolder' => false,
1111
'clearCacheOnLoad' => false,
12-
'version' => '3.5.0',
12+
'version' => '3.5.1',
1313
'constraints' => [
1414
'depends' => [
1515
'typo3' => '10.4.0-11.9.99',

0 commit comments

Comments
 (0)