File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Classes/Domain/Repository Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
1
# In2publish Core Change Log
2
2
3
+ 7.0.3:
4
+
5
+ - [ BUGFIX] MySQL-Strict-Mode: Cache-Clear-Task (and others) are not executed when publishing
6
+
3
7
7.0.2:
4
8
5
9
- [ BUGFIX] Fix markup in changelog file
Original file line number Diff line number Diff line change @@ -110,13 +110,18 @@ public function update(AbstractTask $task)
110
110
protected function taskToPropertiesArray (AbstractTask $ task )
111
111
{
112
112
$ task ->modifyConfiguration ();
113
- return [
113
+ $ properties = [
114
114
'task_type ' => get_class ($ task ),
115
115
'configuration ' => json_encode ($ task ->getConfiguration ()),
116
- 'execution_begin ' => $ task ->getExecutionBeginForPersistence (),
117
- 'execution_end ' => $ task ->getExecutionEndForPersistence (),
118
116
'messages ' => json_encode ($ task ->getMessages ()),
119
117
];
118
+ if ($ task ->getExecutionBeginForPersistence () !== 'NULL ' ) {
119
+ $ properties ['execution_begin ' ] = $ task ->getExecutionBeginForPersistence ();
120
+ }
121
+ if ($ task ->getExecutionEndForPersistence () !== 'NULL ' ) {
122
+ $ properties ['execution_end ' ] = $ task ->getExecutionEndForPersistence ();
123
+ }
124
+ return $ properties ;
120
125
}
121
126
122
127
/**
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.2 ' ,
6
+ 'version ' => '7.0.3 ' ,
7
7
'state ' => 'stable ' ,
8
8
'uploadfolder ' => 0 ,
9
9
'createDirs ' => '' ,
You can’t perform that action at this time.
0 commit comments