Fix missing redirects

Some forms were missing the parent::onSuccess() call.
This commit is contained in:
Eric Lippmann 2018-08-15 09:39:26 +02:00
parent 50e18766f6
commit 1c0e9f5bd4
3 changed files with 6 additions and 1 deletions

View file

@ -194,5 +194,7 @@ class BpUploadForm extends BpConfigBaseForm
$this->storage->storeProcess($config);
Notification::success(sprintf('Process %s has been stored', $name));
parent::onSuccess();
}
}

View file

@ -198,5 +198,7 @@ class ProcessForm extends QuickForm
)
);
}
parent::onSuccess();
}
}

View file

@ -111,7 +111,8 @@ class SimulationForm extends QuickForm
$this->notifySuccess($this->translate('Simulation has been removed'));
}
}
$this->redirectOnSuccess();
parent::onSuccess();
}
/**