Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1583 → Rev 1584

/trunk/papyrus/bibliotheque/fonctions/pap_script.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: pap_script.fonct.php,v 1.3 2005-02-28 11:12:03 jpm Exp $
// CVS : $Id: pap_script.fonct.php,v 1.4 2007-09-06 14:45:06 neiluj Exp $
/**
* Les fonctions permettant d'inclure des scripts.
*
35,7 → 35,7
*@author Alexandre GRANIER <alexandre@tela-botanica.org>
*@author Laurent COUDOUNEAU <lc@gsite.org>
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.3 $ $Date: 2005-02-28 11:12:03 $
*@version $Revision: 1.4 $ $Date: 2007-09-06 14:45:06 $
// +------------------------------------------------------------------------------------------------------+
*/
 
198,9 → 198,28
}
 
 
/*
* Ajout ou suppression des attributs de la balise BODY
* (ex: pour Google MAPS)
* -
* pour supprimer un attribut, appeler la fonction avec un seul parametre.
*/
function GEN_AttributsBody($nomAttribut, $valeurAttribut = NULL)
{
global $_GEN_commun;
$_GEN_commun['attributs_body'][$nomAttribut] = $valeurAttribut;
if($valeurAttribut == NULL && isset($_GEN_commun['attributs_body'][$nomAttribut]))
unset($_GEN_commun['attributs_body'][$nomAttribut]);
}
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.3 2005/02/28 11:12:03 jpm
* Modification des auteurs.
*
* Revision 1.2 2004/09/10 16:40:41 jpm
* Ajout de messages d'erreurs dans les infos de débogage.
*