diff --git a/htdocs/adherents/edit.php b/htdocs/adherents/edit.php
index 7e018b71038..0fa802e24cd 100644
--- a/htdocs/adherents/edit.php
+++ b/htdocs/adherents/edit.php
@@ -24,7 +24,6 @@ require(DOL_DOCUMENT_ROOT."/adherents/adherent.class.php");
require(DOL_DOCUMENT_ROOT."/adherents/adherent_type.class.php");
require(DOL_DOCUMENT_ROOT."/adherents/adherent_options.class.php");
-//$db = new Db();
$adho = new AdherentOptions($db);
/*
@@ -136,7 +135,7 @@ if ($rowid)
print '
| Pays | '.$adh->pays.' |
';
print '| Email | '.$adh->email.' |
';
print '| Login | '.$adh->login.' |
';
- print '| Password | '.$adh->pass.' |
';
+ // print '| Password | '.$adh->pass.' |
';
print 'Date de naissance Format AAAA-MM-JJ | '.$adh->naiss.' |
';
print '| URL Photo | '.$adh->photo.' |
';
// $adho->fetch_optionals();
@@ -187,7 +186,7 @@ if ($rowid)
print '| Pays | |
';
print '| Email | |
';
print '| Login | |
';
- print '| Password | |
';
+ print '| Password | |
';
print 'Date de naissance Format AAAA-MM-JJ | |
';
print '| URL photo | |
';
// $myattr=$adho->fetch_name_optionals();
diff --git a/htdocs/adherents/fiche.php b/htdocs/adherents/fiche.php
index 337d307ede5..3f9dc0ad7cd 100644
--- a/htdocs/adherents/fiche.php
+++ b/htdocs/adherents/fiche.php
@@ -291,7 +291,7 @@ if ($action == 'create') {
print '| Pays | |
';
print '| Email | |
';
print '| Login | |
';
- print '| Password | |
';
+ print '| Password | |
';
print 'Date de Naissance Format AAAA-MM-JJ | |
';
print '| Url photo | |
';
foreach($adho->attribute_label as $key=>$value){
@@ -537,7 +537,7 @@ if ($rowid > 0)
print '| Pays | '.$adh->pays.' |
';
print '| Email | '.$adh->email.' |
';
print '| Login | '.$adh->login.' |
';
- print '| Pass | '.$adh->pass.' |
';
+ // print '| Pass | '.$adh->pass.' |
';
print '| Date de Naissance | '.$adh->naiss.' |
';
print '| URL Photo | '.$adh->photo.' |
';
print '| Public ? | ';
|