Completed
Branch develop (a31803)
by Laurent
21:16
created
test/other/test_dol_escape_htmltag.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,9 +6,15 @@
 block discarded – undo
6 6
 
7 7
 $res=@include_once $path.'/../htdocs/master.inc.php';
8 8
 $res=@include_once $path.'/../../htdocs/master.inc.php';
9
-if (! $res) @include_once '../../master.inc.php';
10
-if (! $res) @include_once '../master.inc.php';
11
-if (! $res) @include_once './master.inc.php';
9
+if (! $res) {
10
+	@include_once '../../master.inc.php';
11
+}
12
+if (! $res) {
13
+	@include_once '../master.inc.php';
14
+}
15
+if (! $res) {
16
+	@include_once './master.inc.php';
17
+}
12 18
 
13 19
 
14 20
 // Show information
Please login to merge, or discard this patch.