Skip to content

Commit 03dc294

Browse files
Merge branch 'release/7.0.5'
2 parents 91aae7f + e0c74e1 commit 03dc294

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# In2publish Core Change Log
22

3+
7.0.5:
4+
5+
- [BUGFIX] Reset collected cache clear entries after writing the task
6+
- [BUGFIX] Use first registered controller actions when creating a link
7+
38
7.0.4:
49

510
- [BUGFIX] Avoid endless loop

Classes/Features/CacheInvalidation/Domain/Anomaly/CacheInvalidator.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ public function writeClearCacheTask()
101101
);
102102
$this->taskRepository->add($clearCacheCommands);
103103
}
104+
105+
$this->clearCacheCommands = [];
106+
$this->clearCachePids = [];
104107
}
105108

106109
/**

Resources/Private/Partials/Tools/IntroductionMenu.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{namespace publish=In2code\In2publishCore\ViewHelpers}
22
<f:for each="{publish:tools.getEnabledTools()}" as="entry">
33
<li class="{f:if(condition:'{entry.action} == \'index\'',then:'active')}">
4-
<f:link.action action="{entry.action}" controller="{entry.controller}" extensionName="{entry.extensionName}">
4+
<f:link.action action="{publish:string.firstInList(entries: entry.action)}" controller="{entry.controller}" extensionName="{entry.extensionName}">
55
<f:translate key="{entry.name}">{entry.name}</f:translate><f:if condition="{entry.description}">: <f:translate key="{entry.description}">{entry.description}</f:translate></f:if>
66
</f:link.action>
77
</li>

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
'title' => 'in2publish Core',
44
'description' => 'Content publishing extension to connect stage and production server',
55
'category' => 'plugin',
6-
'version' => '7.0.4',
6+
'version' => '7.0.5',
77
'state' => 'stable',
88
'uploadfolder' => 0,
99
'createDirs' => '',

0 commit comments

Comments
 (0)