Changes between Version 2 and Version 3 of Ticket #3581, comment 3
- Timestamp:
- 01/07/18 21:05:51 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3581, comment 3
v2 v3 1 The left $tStruct in Func Works is a local declared variable for Func Worksand it act like doing it this way:1 The left $tStruct in Func Works() is a local declared variable for Func Works() and it act like doing it this way: 2 2 3 3 {{{ … … 16 16 17 17 }}} 18 So $tStruct in Func worksis not the Global declared one but a Local new variable.18 So $tStruct in Func Works() is not the Global declared one but a Local new variable. 19 19 20 20 Jos