177,6 → 177,18 |
return res ; |
} |
$ligne = $resultat->fetchRow(DB_FETCHMODE_ASSOC) ; |
|
// Modification des <meta> OpenGraph pour les réseaux sociaux |
GEN_modifierMetaProperty('og:title', $ligne['bf_titre']); |
if (! empty($ligne['bf_description'])) { |
$ogDesc = $ligne['bf_description']; |
// description abréviée |
if (strlen($ogDesc) > 200) { |
$ogDesc = substr($ogDesc, 0, 180) . "..."; |
} |
GEN_modifierMetaProperty('og:description', $ogDesc); |
} |
|
$GLOBALS['_BAZAR_']['ligne_resultat'] = $ligne; |
if (!isset($GLOBALS['_BAZAR_']['typeannonce'])) $GLOBALS['_BAZAR_']['typeannonce'] = $ligne['bf_ce_nature']; |
if (!isset($GLOBALS['_BAZAR_']['fiche_valide'])) $GLOBALS['_BAZAR_']['fiche_valide'] = $ligne['bf_statut_fiche']; |