File tree Expand file tree Collapse file tree
Resources/public/pimcore/js/executable Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -38,7 +38,11 @@ public function run()
3838 {
3939 /** @var Executable $executable */
4040 foreach ($ this ->getExecutables () as $ executable ) {
41- $ cron = CronExpression::factory ($ executable ->getCron ());
41+ try {
42+ $ cron = CronExpression::factory ($ executable ->getCron ());
43+ } catch (\Exception $ exception ) {
44+ continue ;
45+ }
4246 $ lastrun = new \DateTime ();
4347 $ lastrun ->setTimestamp ($ executable ->getLastrun ());
4448
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ pimcore.plugin.processmanager.executable.item = Class.create({
4343 width : 800 ,
4444 height : 400 ,
4545 resizeable : true ,
46- modal : true ,
46+ modal : false ,
4747 layout : 'fit' ,
4848 title : t ( 'processmanager_executables' ) ,
4949 iconCls : 'processmanager_icon_executable' ,
You can’t perform that action at this time.
0 commit comments