Completed
Push — master ( b74578...a56a38 )
by cam
01:26
created
config/ecran_securite.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -659,8 +659,12 @@
 block discarded – undo
659 659
 		  and __ecran_test_if_serialized($v)
660 660
 		) {
661 661
 			$_REQUEST[$k] = htmlspecialchars($v, ENT_QUOTES);
662
-			if (isset($_POST[$k])) $_POST[$k] = $_REQUEST[$k];
663
-			if (isset($_GET[$k])) $_GET[$k] = $_REQUEST[$k];
662
+			if (isset($_POST[$k])) {
663
+			    $_POST[$k] = $_REQUEST[$k];
664
+			}
665
+			if (isset($_GET[$k])) {
666
+			    $_GET[$k] = $_REQUEST[$k];
667
+			}
664 668
 		}
665 669
 	}
666 670
 }
Please login to merge, or discard this patch.