Subversion Repositories Applications.papyrus

Compare Revisions

Ignore whitespace Rev 1738 → Rev 1739

/trunk/papyrus/applettes/syndication/syndication.php
21,7 → 21,7
// | along with Foobar; if not, write to the Free Software |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
// +------------------------------------------------------------------------------------------------------+
// CVS : $Id: syndication.php,v 1.7 2007-07-25 15:09:44 jp_milcent Exp $
// CVS : $Id: syndication.php,v 1.8 2007-11-30 14:17:30 jp_milcent Exp $
/**
* papyrus_bp - syndication.php
*
33,7 → 33,7
//Autres auteurs :
*@author Aucun
*@copyright Tela-Botanica 1999-2006
*@version $Revision: 1.7 $ $Date: 2007-07-25 15:09:44 $
*@version $Revision: 1.8 $ $Date: 2007-11-30 14:17:30 $
// +------------------------------------------------------------------------------------------------------+
*/
 
183,7 → 183,7
}
// Gestion du titre
if ( $options['titre'] == '' ) {
$aso_site['titre'] = utf8_decode($feed->title);
$aso_site['titre'] = mb_convert_encoding($feed->title, 'HTML-ENTITIES', 'UTF-8');
} else if ( $options['titre'] != '0' ) {
$aso_site['titre'] = $options['titre'];
}
207,7 → 207,7
$aso_page = array();
$aso_page['site'] = $aso_site;
$aso_page['url'] = $item->link;
$aso_page['titre'] = utf8_decode($item->title);
$aso_page['titre'] = mb_convert_encoding($item->title, 'HTML-ENTITIES', 'UTF-8');
$aso_page['date'] = $item->pubDate;
if ($options['formatdatepro']) {
switch ($options['formatdatepro']) {
276,6 → 276,12
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* Revision 1.7.2.1 2007-11-30 14:15:02 jp_milcent
* Amélioration du décodage utf8.
*
* Revision 1.7 2007-07-25 15:09:44 jp_milcent
* Fusion avec la livraison Narmer.
*
* Revision 1.5.2.4 2007-07-25 15:07:52 jp_milcent
* Correction problème url.
*