Passed
Push — master ( 9fe450...616d3b )
by Anthony
03:05
created
admin/views/template/principal.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,10 +114,11 @@
 block discarded – undo
114 114
 
115 115
 		<?php
116 116
 			if ($twig_page === true) {
117
-				if (!isset($arr)) $arr = [];
117
+				if (!isset($arr)) {
118
+					$arr = [];
119
+				}
118 120
 				echo $twig->render($page.".html", array_merge(array_merge(array_merge($arr, $constant), $_REQUEST), $_SESSION));
119
-			}
120
-			else {
121
+			} else {
121 122
 				require("admin/views/".$page.".php");
122 123
 			}
123 124
 		?>
Please login to merge, or discard this patch.