Fix: We don't need to have data encode with htmlentities are we are now full utf8.
This commit is contained in:
parent
abe93aff9a
commit
b6fe8b2ec4
@ -157,13 +157,20 @@ foreach($modules as $const => $desc)
|
|||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
print '<br>';
|
print '<br>';
|
||||||
print_fiche_titre($langs->trans("Test"),'','');
|
print_fiche_titre($langs->trans("TestSubmitForm"),'','');
|
||||||
print '<form name="formtest" method="POST" action="'.$_SERVER["PHP_SELF"].'">'."\n";
|
print '<form name="formtest" method="POST" action="'.$_SERVER["PHP_SELF"].'">'."\n";
|
||||||
$editor=new DolEditor('formtestfield',isset($conf->global->FCKEDITOR_TEST)?$conf->global->FCKEDITOR_TEST:'Test',200,'dolibarr_notes','In', true);
|
$editor=new DolEditor('formtestfield',isset($conf->global->FCKEDITOR_TEST)?$conf->global->FCKEDITOR_TEST:'Test',200,'dolibarr_notes','In', true);
|
||||||
$editor->Create();
|
$editor->Create();
|
||||||
print '<center><input class="button" type="submit" name="save" value="'.$langs->trans("Save").'"></center>'."\n";
|
print '<center><input class="button" type="submit" name="save" value="'.$langs->trans("Save").'"></center>'."\n";
|
||||||
print '</form>'."\n";
|
print '</form>'."\n";
|
||||||
|
|
||||||
|
/*
|
||||||
|
print '<!-- Result -->';
|
||||||
|
print $_POST["formtestfield"];
|
||||||
|
print '<!-- Result -->';
|
||||||
|
print $conf->global->FCKEDITOR_TEST;
|
||||||
|
*/
|
||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter('$Date$ - $Revision$');
|
llxFooter('$Date$ - $Revision$');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user