mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-01 07:59:26 -05:00
Fix missing redirects
Some forms were missing the parent::onSuccess() call.
This commit is contained in:
parent
50e18766f6
commit
1c0e9f5bd4
3 changed files with 6 additions and 1 deletions
|
|
@ -194,5 +194,7 @@ class BpUploadForm extends BpConfigBaseForm
|
|||
|
||||
$this->storage->storeProcess($config);
|
||||
Notification::success(sprintf('Process %s has been stored', $name));
|
||||
|
||||
parent::onSuccess();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -198,5 +198,7 @@ class ProcessForm extends QuickForm
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
parent::onSuccess();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -111,7 +111,8 @@ class SimulationForm extends QuickForm
|
|||
$this->notifySuccess($this->translate('Simulation has been removed'));
|
||||
}
|
||||
}
|
||||
$this->redirectOnSuccess();
|
||||
|
||||
parent::onSuccess();
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue