From 624d79b437e8efd7020cb23c410e6fc436d4a4a5 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 9 Oct 2010 11:37:29 +0000 Subject: [PATCH] Fix: Minor fix in look --- htdocs/core/tpl/freeproductline_create.tpl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/tpl/freeproductline_create.tpl.php b/htdocs/core/tpl/freeproductline_create.tpl.php index e82c986664a..33029073f01 100644 --- a/htdocs/core/tpl/freeproductline_create.tpl.php +++ b/htdocs/core/tpl/freeproductline_create.tpl.php @@ -43,7 +43,7 @@ if ($conf->global->PRODUIT_USE_MARKUP) $colspan = 'colspan="2"'; > select_type_of_lines(isset($_POST["type"])?$_POST["type"]:-1,'type',1); - if ($conf->product->enabled && $conf->service->enabled) echo '
'; + if (($conf->product->enabled && $conf->service->enabled) || (empty($conf->product->enabled) && empty($conf->service->enabled))) echo '
'; // Editor wysiwyg require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");