Passed
Push — master ( ffc8dd...baf569 )
by Anthony
02:45
created
admin/views/template/principal.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,11 +114,12 @@
 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
 				
119 121
 				echo $twig->render($page, array_merge($arr, $constant));
120
-			}
121
-			else {
122
+			} else {
122 123
 				require("admin/views/".$page.".php");
123 124
 			}
124 125
 		?>
Please login to merge, or discard this patch.