Completed
Branch develop (27fc5a)
by
unknown
15:28
created
htdocs/comm/action/class/cactioncomm.class.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -327,10 +327,16 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.