Skip to content

Commit

Permalink
Merge branch 'release/11.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
garbast committed Jan 2, 2025
2 parents 27a943c + ad66705 commit 44a17ae
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/Hooks/ClearCacheHook.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public function __construct(protected PhpFrontend $classCache)
*/
public function clearCachePostProc(array $parameters): void
{
if (Environment::getContext()->isDevelopment() && $parameters['cacheCmd'] === 'all') {
if (Environment::getContext()->isDevelopment() && ($parameters['cacheCmd'] ?? '') === 'all') {
$this->classCache->flush();
}
}
Expand Down
4 changes: 2 additions & 2 deletions Documentation/guides.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
interlink-shortcode="evoweb/extender"
/>
<project title="extender"
release="11.0.1"
version="11.0.1"
release="11.0.2"
version="11.0.2"
copyright="since 2014 by evoWeb"
/>
<inventory id="t3tsref" url="https://docs.typo3.org/m/typo3/reference-typoscript/main/en-us/"/>
Expand Down
2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'author_email' => '[email protected]',
'author_company' => 'evoWeb',
'state' => 'stable',
'version' => '11.0.1',
'version' => '11.0.2',
'constraints' => [
'depends' => [
'typo3' => '13.0.0-13.4.99',
Expand Down

0 comments on commit 44a17ae

Please sign in to comment.