Skip to content
Snippets Groups Projects
Commit dd791d96 authored by srosse's avatar srosse
Browse files

OO-500: the subject element is not initialized with some configurations

parent d1a69dcd
No related branches found
No related tags found
No related merge requests found
...@@ -127,14 +127,16 @@ public class BGMailTemplateController extends FormBasicController { ...@@ -127,14 +127,16 @@ public class BGMailTemplateController extends FormBasicController {
if(defaultTemplate.isSelected(0)) { if(defaultTemplate.isSelected(0)) {
allOk &= true; allOk &= true;
} else if (mandatoryEmail || sendMail.isSelected(0)) { } else if (mandatoryEmail || sendMail.isSelected(0)) {
subjectElem.clearError(); if(subjectElem != null) {
if (subjectElem.getValue().trim().length() == 0) { subjectElem.clearError();
subjectElem.setErrorKey("mailtemplateform.error.emptyfield", null); if (subjectElem.getValue().trim().length() == 0) {
allOk &= false; subjectElem.setErrorKey("mailtemplateform.error.emptyfield", null);
} allOk &= false;
if (subjectElem.getValue().indexOf("#") != -1) { }
subjectElem.setErrorKey("mailtemplateform.error.velocity", null); if (subjectElem.getValue().indexOf("#") != -1) {
allOk &= false; subjectElem.setErrorKey("mailtemplateform.error.velocity", null);
allOk &= false;
}
} }
bodyElem.clearError(); bodyElem.clearError();
......
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