diff --git a/entity/Person_entity/entityfields/salutations/children/language_param/valueProcess.js b/entity/Person_entity/entityfields/salutations/children/language_param/valueProcess.js index 2cb0f4295d8276abc980683fdc3945bcfd965aee..3b648cd9acceb82cf64a27def50c9aff6c070b18 100644 --- a/entity/Person_entity/entityfields/salutations/children/language_param/valueProcess.js +++ b/entity/Person_entity/entityfields/salutations/children/language_param/valueProcess.js @@ -1,4 +1,5 @@ import("system.vars"); import("system.result"); -result.string(vars.get("$field.LANGUAGE")) \ No newline at end of file +if (vars.get("$field.LANGUAGE")) + result.string(vars.get("$field.LANGUAGE")); \ No newline at end of file diff --git a/entity/Person_entity/entityfields/salutationtitles/children/language_param/valueProcess.js b/entity/Person_entity/entityfields/salutationtitles/children/language_param/valueProcess.js index 2cb0f4295d8276abc980683fdc3945bcfd965aee..4aace6a64132d1a1849cb68b7a8b491e14176f67 100644 --- a/entity/Person_entity/entityfields/salutationtitles/children/language_param/valueProcess.js +++ b/entity/Person_entity/entityfields/salutationtitles/children/language_param/valueProcess.js @@ -1,4 +1,5 @@ import("system.vars"); import("system.result"); -result.string(vars.get("$field.LANGUAGE")) \ No newline at end of file +if (vars.get("$field.LANGUAGE")) + result.string(vars.get("$field.LANGUAGE")) \ No newline at end of file diff --git a/entity/Person_entity/entityfields/salutationtitles/children/salutation_param/valueProcess.js b/entity/Person_entity/entityfields/salutationtitles/children/salutation_param/valueProcess.js index f098580b1e736016c19e4d5cc776a552e24b55d4..d24ba266458ce5e566efd8729635397fd3ec6315 100644 --- a/entity/Person_entity/entityfields/salutationtitles/children/salutation_param/valueProcess.js +++ b/entity/Person_entity/entityfields/salutationtitles/children/salutation_param/valueProcess.js @@ -1,4 +1,5 @@ import("system.vars"); import("system.result"); -result.string(vars.get("$field.SALUTATION")); \ No newline at end of file +if (vars.get("$field.SALUTATION")) + result.string(vars.get("$field.SALUTATION")); \ No newline at end of file