Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1536 → Rev 1537

/branches/livraison_narmer/client/bazar/bibliotheque/bazar.fonct.rss.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.rss.php,v 1.82.2.3 2007-05-24 15:33:57 neiluj Exp $
// CVS : $Id: bazar.fonct.rss.php,v 1.82.2.4 2007-08-24 13:06:05 jp_milcent Exp $
/**
*
*@package bazar
28,7 → 28,7
*@author Florian Schmitt <florian@ecole-et-nature.org>
//Autres auteurs :
*@copyright Tela-Botanica 2000-2006
*@version $Revision: 1.82.2.3 $
*@version $Revision: 1.82.2.4 $
// +------------------------------------------------------------------------------------------------------+
*/
 
725,7 → 725,7
$xml .= "\r\n ";
$xml .= XML_Util::createStartElement ('item');
$xml .= "\r\n ";
$xml .= XML_Util::createTag ('title', null, html_entity_decode(($ligne['bf_titre'])));
$xml .= XML_Util::createTag ('title', null, utf8_encode(html_entity_decode(($ligne['bf_titre']))));
$xml .= "\r\n ";
$lien=$GLOBALS['_BAZAR_']['url'];
$lien->addQueryString('action', BAZ_VOIR_FICHE);
737,7 → 737,7
$xml .= XML_Util::createStartElement ('description');
$xml .= "\r\n ";
if ($_GET['action'] != BAZ_VOIR_TOUTES_ANNONCES) {
$xml .= XML_Util::createCDataSection ( html_entity_decode(($ligne['bf_description'])));
$xml .= XML_Util::createCDataSection ( utf8_encode(html_entity_decode(($ligne['bf_description']))));
}
$xml .= "\r\n ";
$xml .= XML_Util::createEndElement ('description');
1194,7 → 1194,10
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* $Log: not supported by cvs2svn $
* Revision 1.82.2.3 2007-05-24 15:33:57 neiluj
* correction bug de recherche avec nature='toutes' ne retournant aucun resultat
*
* Revision 1.82 2007/04/20 12:47:42 florian
* correction bugs suite au merge
*