You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/refguide/installation/upgrading-from-10-to-11/_index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -148,15 +148,15 @@ In Mendix 11.0 you won’t run into any ambiguity around this anymore.
148
148
#### Example 3
149
149
150
150
```
151
-
$User/Name + "@mendix.com"
151
+
$User/Name + "@siemens.com"
152
152
```
153
153
154
-
In this example, Mendix will handle string concatenation correctly no matter if `$User/Name` is `empty` or `''`. The resulting string will be `@mendix.com`.
154
+
In this example, Mendix will handle string concatenation correctly no matter if `$User/Name` is `empty` or `''`. The resulting string will be `@siemens.com`.
155
155
156
156
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:
157
157
158
158
```
159
-
if trim($User/Name) = '' then '' else $User/Name + "@mendix.com"
159
+
if trim($User/Name) = '' then '' else $User/Name + "@siemens.com"
0 commit comments