Skip to content

Commit 3014a82

Browse files
committed
Fixed an example
1 parent 2b60df6 commit 3014a82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/refguide/installation/upgrading-from-10-to-11.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ In this example, Mendix will handle string concatenation correctly no matter if
146146
In this particular example, if you want to prevent the generation of email addresses without the first part you should add a validation check before doing concatenation:
147147

148148
```
149-
if trim($User/Name) = '' then $User/Name + "@mendix.com" else ''
149+
if trim($User/Name) = '' then '' else $User/Name + "@mendix.com"
150150
```
151151

152152
### Using the **ShowHomePage** Microflow in the **System** Module {#apply-entity-access}

0 commit comments

Comments
 (0)