Subversion Repositories Applications.bazar

Compare Revisions

Ignore whitespace Rev 54 → Rev 55

/trunk/bibliotheque/bazar.fonct.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: bazar.fonct.php,v 1.19 2005-11-24 16:17:13 florian Exp $
// CVS : $Id: bazar.fonct.php,v 1.20 2005-11-30 13:58:45 florian Exp $
/**
*
* Fonctions du module bazar
30,7 → 30,7
*@author Florian Schmitt <florian@ecole-et-nature.org>
//Autres auteurs :
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.19 $ $Date: 2005-11-24 16:17:13 $
*@version $Revision: 1.20 $ $Date: 2005-11-30 13:58:45 $
// +------------------------------------------------------------------------------------------------------+
*/
 
778,7 → 778,12
}
//cas des checkbox
elseif ($tableau[$i]['type']=='checkbox') {
$val=implode('**', array_keys($valeur[$tableau[$i]['nom_bdd']]));
if (isset($valeur[$tableau[$i]['nom_bdd']])) {
$val=implode('**', array_keys($valeur[$tableau[$i]['nom_bdd']]));
} else {
$val=BAZ_NON_PRECISE;
}
}
//cas des champs texte et textarea
else {
1340,6 → 1345,9
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.19 2005/11/24 16:17:13 florian
* corrections bugs, ajout des cases à cocher
*
* Revision 1.18 2005/11/18 16:03:23 florian
* correction bug html entites
*