File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Classes/Features/CacheInvalidation/Domain/Anomaly
Resources/Private/Partials/Tools Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
# In2publish Core Change Log
2
2
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
+
3
8
7.0.4:
4
9
5
10
- [ BUGFIX] Avoid endless loop
Original file line number Diff line number Diff line change @@ -101,6 +101,9 @@ public function writeClearCacheTask()
101
101
);
102
102
$ this ->taskRepository ->add ($ clearCacheCommands );
103
103
}
104
+
105
+ $ this ->clearCacheCommands = [];
106
+ $ this ->clearCachePids = [];
104
107
}
105
108
106
109
/**
Original file line number Diff line number Diff line change 1
1
{namespace publish=In2code\In2publishCore\ViewHelpers}
2
2
< f:for each ="{publish:tools.getEnabledTools()} " as ="entry ">
3
3
< 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} ">
5
5
< 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 >
6
6
</ f:link .action>
7
7
</ li >
Original file line number Diff line number Diff line change 3
3
'title ' => 'in2publish Core ' ,
4
4
'description ' => 'Content publishing extension to connect stage and production server ' ,
5
5
'category ' => 'plugin ' ,
6
- 'version ' => '7.0.4 ' ,
6
+ 'version ' => '7.0.5 ' ,
7
7
'state ' => 'stable ' ,
8
8
'uploadfolder ' => 0 ,
9
9
'createDirs ' => '' ,
You can’t perform that action at this time.
0 commit comments