Use of comma in string\concatenate

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • micha-nerdlichter
    Junior Member
    • Sep 2017
    • 8

    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?
  • yuri
    Member
    • Mar 2014
    • 8471

    #2
    Hi,

    It could be a bug. I will take a look and let you know.
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    • yuri
      Member
      • Mar 2014
      • 8471

      #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
      If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

      Comment

      Working...