diff --git a/htdocs/user/fiche.php b/htdocs/user/fiche.php
index 9a58e97dae6..129a4b1b6d8 100644
--- a/htdocs/user/fiche.php
+++ b/htdocs/user/fiche.php
@@ -241,7 +241,6 @@ if ($_POST["action"] == 'update' && ! $_POST["cancel"] && $caneditfield)
$edituser->office_fax = trim($_POST["office_fax"]);
$edituser->user_mobile = trim($_POST["user_mobile"]);
$edituser->email = trim($_POST["email"]);
- $edituser->note = trim($_POST["note"]);
$edituser->webcal_login = trim($_POST["webcal_login"]);
$ret=$edituser->update();
@@ -922,11 +921,6 @@ else
print '
'.dolibarr_print_date($fuser->datepreviouslogin,"dayhour").' | ';
print "\n";
- // Note
- print "".'| '.$langs->trans("Note").' | ';
- print ''.nl2br($fuser->note).' | ';
- print "
\n";
-
// Autres caractéristiques issus des autres modules
if ($conf->webcal->enabled)
{
@@ -1346,29 +1340,6 @@ else
print $fuser->getLibStatut(4);
print '';
- // Note
- print '| '.$langs->trans("Note").' | ';
- if ($caneditfield)
- {
- if ($conf->fckeditor->enabled)
- {
- require_once(DOL_DOCUMENT_ROOT."/lib/doleditor.class.php");
- $doleditor=new DolEditor('note',$fuser->note,180,'dolibarr_notes','',false);
- $doleditor->Create();
- }
- else
- {
- print '';
- }
- }
- else
- {
- print nl2br($fuser->note);
- }
- print ' |
';
-
// Autres caractéristiques issus des autres modules
if ($conf->webcal->enabled)
{