@@ -327,10 +327,16 @@ |
||
| 327 | 327 | } |
| 328 | 328 | } |
| 329 | 329 | |
| 330 | - if (empty($idorcode)) $idorcode = 'all'; |
|
| 330 | + if (empty($idorcode)) { |
|
| 331 | + $idorcode = 'all'; |
|
| 332 | + } |
|
| 331 | 333 | $TType = $TSystem[$idorcode]; |
| 332 | - if (! empty($TSystemAuto[$idorcode])) $TType = array_merge($TSystem[$idorcode], $TSystemAuto[$idorcode]); |
|
| 333 | - if (! empty($TModule[$idorcode])) $TType = array_merge($TSystem[$idorcode], $TModule[$idorcode]); |
|
| 334 | + if (! empty($TSystemAuto[$idorcode])) { |
|
| 335 | + $TType = array_merge($TSystem[$idorcode], $TSystemAuto[$idorcode]); |
|
| 336 | + } |
|
| 337 | + if (! empty($TModule[$idorcode])) { |
|
| 338 | + $TType = array_merge($TSystem[$idorcode], $TModule[$idorcode]); |
|
| 339 | + } |
|
| 334 | 340 | $this->liste_array = $TType; |
| 335 | 341 | |
| 336 | 342 | |