Announcement

Collapse
No announcement yet.

Use of comma in string\concatenate

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Use of comma in string\concatenate

    The following formula works fine:
    Code:
    name = string\concatenate(firstName,' ',lastName);
    It returns "John Doe". The following does not:
    Code:
    name = string\concatenate(lastName,', ',firstName);
    It returns "DoeJohn" instead of "Doe, John". Seems like commas in strings aren't working, a colon works. So do commas need extra escaping? If so, how?

  • #2
    Hi,

    It could be a bug. I will take a look and let you know.

    Comment


    • #3
      It's a bug. Here is the fix: https://github.com/espocrm/espocrm/c...a16abff043c4d5

      You can apply this fix manually before release.

      Thank you

      Comment

      Working...
      X