From b45f5039ed194d12d048986c2e260b8d42c5a732 Mon Sep 17 00:00:00 2001
From: Laurent Destailleur <eldy@destailleur.fr>
Date: Mon, 5 Oct 2015 09:02:03 +0200
Subject: [PATCH] Fix syntax error

---
 htdocs/main.inc.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/htdocs/main.inc.php b/htdocs/main.inc.php
index 826d4e77b2a..fcef513130f 100644
--- a/htdocs/main.inc.php
+++ b/htdocs/main.inc.php
@@ -163,9 +163,9 @@ if (! defined('NOSCANPOSTFORINJECTION'))
 }
 
 // This is to make Dolibarr working with Plesk
-if (! empty($_SERVER['DOCUMENT_ROOT']) && substr($_SERVER['DOCUMENT_ROOT'], -6) !== 'htdocs') {
-		set_include_path($_SERVER['DOCUMENT_ROOT'] . '/htdocs');
-	}
+if (! empty($_SERVER['DOCUMENT_ROOT']) && substr($_SERVER['DOCUMENT_ROOT'], -6) !== 'htdocs') 
+{
+	set_include_path($_SERVER['DOCUMENT_ROOT'] . '/htdocs');
 }
 
 // Include the conf.php and functions.lib.php
-- 
GitLab