From 720698a1b85acf43cee6332d3963ae52275ba470 Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Sun, 23 Jul 2006 20:33:27 +0000 Subject: [PATCH] =?UTF-8?q?je=20retire=20la=20barre=20d'outils=20partag=E9?= =?UTF-8?q?e=20pour=20la=20fiche=20produit=20car=20on=20ne=20peut=20pas=20?= =?UTF-8?q?travailler=20=20en=20plein=20=E9cran=20pour=20la=20description?= =?UTF-8?q?=20produit,=20mais=20je=20laisse=20la=20possibilit=E9=20de=20la?= =?UTF-8?q?=20faire=20=20dans=20la=20classe?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/product/fiche.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php index ec0eba6c611..8a5937178ff 100644 --- a/htdocs/product/fiche.php +++ b/htdocs/product/fiche.php @@ -772,13 +772,6 @@ if ($_GET["id"] || $_GET["ref"]) { print ''; } - - if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC) - { - print ' '; - print '
'; - print ''; - } // Description print ''.$langs->trans("Description").''; @@ -786,7 +779,7 @@ if ($_GET["id"] || $_GET["ref"]) if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC) { require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); - $doleditor=new DolEditor('desc',$product->description,200,'dolibarr_notes','Out:xToolbar',true); + $doleditor=new DolEditor('desc',$product->description,200,'dolibarr_notes'); $doleditor->Create(); } else @@ -818,7 +811,7 @@ if ($_GET["id"] || $_GET["ref"]) if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC) { require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php"); - $doleditor=new DolEditor('note',$product->note,200,'dolibarr_notes','Out:xToolbar',true); + $doleditor=new DolEditor('note',$product->note,200,'dolibarr_notes'); $doleditor->Create(); } else