From 44cef7690d238204ba0a4cc0f17c8dfdb5da2cf8 Mon Sep 17 00:00:00 2001 From: Sebastian Listl <s.listl@adito.de> Date: Fri, 30 Oct 2020 09:57:50 +0100 Subject: [PATCH] ContactTitleRenderer sql correction --- process/Contact_lib/process.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/Contact_lib/process.js b/process/Contact_lib/process.js index 1d8216d36f..4d53dde63a 100644 --- a/process/Contact_lib/process.js +++ b/process/Contact_lib/process.js @@ -661,7 +661,7 @@ function ContactTitleRenderer(pContact, pOptions) var maskingUtil = new SqlMaskingUtils(); var res = maskingUtil.concat([this.contact.salutation, this.contact.title, this.contact.firstname, this.contact.middlename, this.contact.lastname].filter(function (e){ return e != ""; - }), " "); + }), " ", false); //binary AND check for possibility to check serveral options if (this._options & ContactTitleRenderer.OPTIONS.IncludeOrganisation && this.contact.organisationName) res = maskingUtil.concat([res, this.contact.organisationName], " | "); -- GitLab