Skip to content

Commit 679ccd2

Browse files
committed
Merge branch '2.3'
2 parents 9020248 + c063ed2 commit 679ccd2

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

src/ProcessManagerBundle/EventListener/CronListener.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

src/ProcessManagerBundle/Resources/public/pimcore/js/executable/item.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)