Subversion Repositories Sites.tela-botanica.org

Compare Revisions

Ignore whitespace Rev 507 → Rev 508

/trunk/client/inscription/inscription.php
266,10 → 266,24
}
} else if ($_REQUEST['action'] == 'modifier_v') {
$ancien_mail = $GLOBALS['AUTH']->getUsername() ;
if ($formulaire->validate()) {
$formulaire->process('mise_a_jour', false) ;
}
$nouveau_mail = $GLOBALS['AUTH']->getUsername() ;
// on parcourt tout le dossier des applications clientes et on appelle la modification de chacune
$d = dir(GEN_CHEMIN_CLIENT);
while (false !== ($repertoire = $d->read())) {
if ($repertoire != '.' || $repertoire != '..') {
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.modification.inc.php'))
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.modification.inc.php' ;
}
}
$d->close();
return info($GLOBALS['AUTH']->getAuthData(INS_CHAMPS_ID)).bouton($url);
}