From 2ee2dfeea2b0b22936e4598b243400e6ce9f9d7c Mon Sep 17 00:00:00 2001 From: stickler-ci Date: Sat, 27 Aug 2022 10:26:09 +0000 Subject: [PATCH] Fixing style errors. --- htdocs/commande/card.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/htdocs/commande/card.php b/htdocs/commande/card.php index a13f6706aa7..b97bf147dbb 100644 --- a/htdocs/commande/card.php +++ b/htdocs/commande/card.php @@ -50,16 +50,16 @@ require_once DOL_DOCUMENT_ROOT.'/commande/class/commande.class.php'; if (isModEnabled("propal")) { require_once DOL_DOCUMENT_ROOT.'/comm/propal/class/propal.class.php'; - } +} if (!empty($conf->project->enabled)) { require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php'; require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php'; - } +} if (!empty($conf->variants->enabled)) { require_once DOL_DOCUMENT_ROOT.'/variants/class/ProductCombination.class.php'; - } +} // Load translation files required by the page @@ -67,13 +67,13 @@ $langs->loadLangs(array('orders', 'sendings', 'companies', 'bills', 'propal', 'd if (!empty($conf->incoterm->enabled)) { $langs->load('incoterm'); - } +} if (!empty($conf->margin->enabled)) { $langs->load('margins'); - } +} if (!empty($conf->productbatch->enabled)) { $langs->load('productbatch'); - } +} $id = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('orderid', 'int'));