Subversion Repositories Applications.bazar

Compare Revisions

Ignore whitespace Rev 125 → Rev 126

/trunk/bazarRSS.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: bazarRSS.php,v 1.3 2005-07-21 19:03:12 florian Exp $
// CVS : $Id: bazarRSS.php,v 1.4 2006-05-19 13:54:32 florian Exp $
/**
* Générateur de flux RSS à partir du bazar
*
29,7 → 29,7
*@author Alexandre Granier <alexandre@tela-botanica.org>
*
*@copyright Tela-Botanica 2000-2004
*@version $Revision: 1.3 $
*@version $Revision: 1.4 $
// +------------------------------------------------------------------------------------------------------+
*/
 
50,6 → 50,14
else {
$annonce='';
}
 
if (isset($_GET['categorie_nature'])) {
$categorie_nature=$_GET['categorie_nature'];
}
else {
$categorie_nature='';
}
 
if (isset($_GET['nbitem'])) {
$nbitem=$_GET['nbitem'];
}
56,6 → 64,7
else {
$nbitem='';
}
 
if (isset($_GET['emetteur'])) {
$emetteur=$_GET['emetteur'];
}
62,6 → 71,7
else {
$emetteur='';
}
 
if (isset($_GET['valide'])) {
$valide=$_GET['valide'];
}
68,6 → 78,7
else {
$valide=1;
}
 
if (isset($_GET['sql'])) {
$requeteSQL=$_GET['sql'];
}
74,12 → 85,16
else {
$requeteSQL='';
}
echo html_entity_decode(gen_RSS($annonce, $nbitem, $emetteur, $valide, $requeteSQL));
 
echo html_entity_decode(gen_RSS($annonce, $nbitem, $emetteur, $valide, $requeteSQL, '', '', $categorie_nature));
 
 
/* +--Fin du code ----------------------------------------------------------------------------------------+
*
* $Log: not supported by cvs2svn $
* $Log: not supported by cvs2svn $
* Revision 1.3 2005/07/21 19:03:12 florian
* nouveautés bazar: templates fiches, correction de bugs, ...
*
* Revision 1.1.1.1 2005/02/17 18:05:11 florian
* Import initial de Bazar
*