Skip to content
Snippets Groups Projects
Commit eb5d012e authored by User expired's avatar User expired
Browse files

Merge remote-tracking branch 'upstream/OpenOLAT_15.0' into OpenOLAT_15.0.uibk

parents 86065783 640e21e7
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,12 @@ public class EvaluationFormExecutionController extends FormBasicController imple
allSaved = false;
}
}
dbInstance.commit();
try {
dbInstance.commit();
} catch (Exception e) {
log.error("Commiting saved evaluation form response failed!", e);
allSaved = false;
}
if (!allSaved) {
showError("error.cannot.save");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment