Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1487 → Rev 1488

/trunk/client/bottin/bibliotheque/bottin.fonct.php
720,7 → 720,7
// =========== Insertion dans l'annuaire ===================
// Génération du nom wikini à partir du nom et du prénom
if ($GLOBALS['ins_config']['ic_utilise_nom_wiki'] && $GLOBALS['ins_config']['ic_genere_nom_wiki']) {
$valeur['nom_wiki'] = inscription_genere_nom_wiki ($valeur['nom'], isset ($valeur['prenom']) ? $valeur['prenom'] : '') ;
$valeur['nom_wiki'] = inscription_genere_nom_wiki ($valeur['a_nom'], isset ($valeur['a_prenom']) ? $valeur['a_prenom'] : '') ;
} else {
if (!$GLOBALS['ins_config']['ic_genere_nom_wiki']) {
if (isset($valeur['nomwiki'])) $valeur['nom_wiki'] = $valeur['nomwiki'];
1331,6 → 1331,9
//-- Fin du code source ------------------------------------------------------------
/*
* $Log$
* Revision 1.16 2007-06-25 09:59:03 alexandre_tb
* ajout de carte_google, mise en place des templates avec api/formulaire, configuration de multiples inscriptions, ajout de modele pour les mails
*
* Revision 1.15 2007-06-01 15:10:25 alexandre_tb
* ajout d un chmod 0755 apres l upload du logo
*
/trunk/client/bottin/bibliotheque/inscription.fonct.wiki.php
19,7 → 19,7
// | License along with this library; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: inscription.fonct.wiki.php,v 1.6 2007-04-11 08:30:12 neiluj Exp $
// CVS : $Id: inscription.fonct.wiki.php,v 1.7 2007-06-25 15:37:57 alexandre_tb Exp $
/**
* Fonctions wikini
*
32,7 → 32,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.6 $ $Date: 2007-04-11 08:30:12 $
*@version $Revision: 1.7 $ $Date: 2007-06-25 15:37:57 $
// +------------------------------------------------------------------------------------------------------+
*/
 
55,7 → 55,7
return ;
}
$requete = "insert into interwikini_users set name=\"".$valeur['nom_wiki'].
"\", password=\"".md5($valeur['mot_de_passe'])."\", email=\"".$valeur['email']."\"".
"\", password=\"".md5($valeur['mot_de_passe'])."\", email=\"".$valeur['a_mail']."\"".
', signuptime=now()' ;
$resultat = $GLOBALS['ins_db']->query ($requete) ;
if (DB::isError($resultat)) {
116,6 → 116,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.6 2007/04/11 08:30:12 neiluj
* remise en état du CVS...
*
* Revision 1.4 2006/07/04 09:39:03 alexandre_tb
* correction d'un bug mineur
*