Line 149... |
Line 149... |
149 |
else {
|
149 |
else {
|
150 |
$res .= '<h2 class="BAZ_titre">'.$GLOBALS['_BAZAR_']['typeannonce'].'</h2>'."\n";
|
150 |
$res .= '<h2 class="BAZ_titre">'.$GLOBALS['_BAZAR_']['typeannonce'].'</h2>'."\n";
|
151 |
}
|
151 |
}
|
152 |
$res .= '<div class="BAZ_cadre_fiche">'."\n";
|
152 |
$res .= '<div class="BAZ_cadre_fiche">'."\n";
|
153 |
$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
|
153 |
$requete = 'SELECT * FROM bazar_fiche WHERE bf_id_fiche='.$GLOBALS['_BAZAR_']['id_fiche'];
|
- |
|
154 |
|
154 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
155 |
$resultat = $GLOBALS['_BAZAR_']['db']->query($requete) ;
|
155 |
if (DB::isError ($resultat)) {
|
- |
|
156 |
die ($resultat->getMessage().'<br />'.$resultat->getDebugInfo()) ;
|
156 |
(DB::isError($resultat)) ? die(BOG_afficherErreurSql(__FILE__, __LINE__, $resultat->getMessage(), $requete))
|
- |
|
157 |
: '';
|
157 |
}
|
158 |
|
158 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
159 |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ;
|
159 |
$GLOBALS['_BAZAR_']['annonceur'] = $ligne['bf_ce_utilisateur'] ;
|
160 |
$GLOBALS['_BAZAR_']['annonceur'] = $ligne['bf_ce_utilisateur'] ;
|
160 |
//si le template existe, on genere le template
|
161 |
//si le template existe, on genere le template
|
161 |
if ((file_exists(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php'))) {
|
162 |
if ((file_exists(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php'))) {
|
162 |
include_once(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php');
|
163 |
include_once(BAZ_CHEMIN_APPLI.'templates/'.$GLOBALS['_BAZAR_']['typeannonce'].'-fiche.php');
|