Skip to content
Snippets Groups Projects
Commit c73aedb4 authored by uhensler's avatar uhensler
Browse files

OO-4677: RS if user saves responses of a deleted survey

parent c25dda2d
No related branches found
No related tags found
No related merge requests found
......@@ -330,7 +330,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