Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1793 → Rev 1794

/branches/livraison_aha/client/bottin/bibliotheque/bottin.class.php
26,11 → 26,11
*@version 05 avril 2006
// +-----------------------------------------------------------------------------------------------+
//
// $Id: bottin.class.php,v 1.6.2.1 2007-11-22 10:13:54 alexandre_tb Exp $
// $Id: bottin.class.php,v 1.6.2.2 2008-02-08 08:22:46 alexandre_tb Exp $
// FICHIER : $RCSfile: bottin.class.php,v $
// AUTEUR : $Author: alexandre_tb $
// VERSION : $Revision: 1.6.2.1 $
// DATE : $Date: 2007-11-22 10:13:54 $
// VERSION : $Revision: 1.6.2.2 $
// DATE : $Date: 2008-02-08 08:22:46 $
*/
 
 
125,7 → 125,7
if (DB::isError($resultat)) return "Echec de la requete : $requete<br />".$resultat->getMessage() ;
if ($resultat->numRows() != 0) {
while ($ligne = $resultat->fetchRow(DB_FETCHMODE_OBJECT)) {
$donnees = unserialize (stripslashes($ligne->ia_donnees)) ;
$donnees = unserialize (($ligne->ia_donnees)) ;
array_push ($tableau_inscrit, array_merge (array('id' => $ligne->ia_id_inscription, 'date' => $ligne->ia_date), $donnees));
}
return $tableau_inscrit;
322,6 → 322,7
if (DB::isError ($resultat)) {
$this->raiseError();
}
if ($resultat->numRows() == 0) return 'Aucun template avec id_template='.$id_template.', id_inscription='.$id_inscription.' et langue='.$langue;
$ligne = $resultat->fetchRow (DB_FETCHMODE_OBJECT);
return $ligne->it_template;
}
372,6 → 373,9
//-- Fin du code source ------------------------------------------------------------
/*
* $Log: not supported by cvs2svn $
* Revision 1.6.2.1 2007-11-22 10:13:54 alexandre_tb
* ajout d un template pour le mail de confirmation d inscription
*
* Revision 1.6 2007-08-27 13:12:15 alexandre_tb
* ajout de la constante INS_TEMPLATE_CARTO_GOOGLE_ACCUEIL
*