Editeur wisiwyg est ouvert par dfaut

This commit is contained in:
Laurent Destailleur 2006-08-06 19:49:58 +00:00
parent b9a87cb6ca
commit 14cae5a73a
2 changed files with 5 additions and 5 deletions

View File

@ -454,7 +454,7 @@ else
if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_MAILING)
{
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
$doleditor=new DolEditor('body',$mil->body,320,'dolibarr_mailings');
$doleditor=new DolEditor('body',$mil->body,320,'dolibarr_mailings','',true);
$doleditor->Create();
}
else

View File

@ -440,7 +440,7 @@ if ($_GET["action"] == 'create' && $user->rights->produit->creer)
if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC)
{
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
$doleditor=new DolEditor('desc','',200,'dolibarr_notes');
$doleditor=new DolEditor('desc','',200,'dolibarr_notes','',true);
$doleditor->Create();
}
else
@ -466,7 +466,7 @@ if ($_GET["action"] == 'create' && $user->rights->produit->creer)
if ($conf->fckeditor->enabled && $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC)
{
require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
$doleditor=new DolEditor('note','',200,'dolibarr_notes');
$doleditor=new DolEditor('note','',200,'dolibarr_notes','',true);
$doleditor->Create();
}
else
@ -690,7 +690,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');
$doleditor=new DolEditor('desc',$product->description,200,'dolibarr_notes','',true);
$doleditor->Create();
}
else
@ -722,7 +722,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');
$doleditor=new DolEditor('note',$product->note,200,'dolibarr_notes','',true);
$doleditor->Create();
}
else