Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 938 → Rev 939

/trunk/client/bottin/bibliotheque/annuaire_backoffice.fonct.php
10,7 → 10,7
// | Auteur : Alexandre Granier <alexandre@tela-botanica.org> |
// +--------------------------------------------------------------------------------+
//
// $Id: annuaire_backoffice.fonct.php,v 1.4 2006-07-18 14:19:21 alexandre_tb Exp $
// $Id: annuaire_backoffice.fonct.php,v 1.5 2006-09-15 12:34:09 alexandre_tb Exp $
 
 
/** function mkengine ()
354,7 → 354,15
if (isset($_REQUEST['ajouter_v'])) {
if ($formulaire->validate()) {
insertion($formulaire->getSubmitValues()) ;
$id_utilisateur = insertion($formulaire->getSubmitValues()) ;
// Appel des actions desinscriptions des applications clientes
$d = dir(GEN_CHEMIN_CLIENT);
while (false !== ($repertoire = $d->read())) {
if (file_exists(GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php'))
include_once GEN_CHEMIN_CLIENT.$repertoire.GEN_SEP.$repertoire.'.inscription.inc.php' ;
}
$d->close();
if (INS_CHAMPS_LETTRE != '' && isset ($valeurs['lettre'])) {
inscription_lettre(INS_MAIL_INSCRIPTION_LISTE) ;
}