PluXml
PluXml copied to clipboard
Return au lieu d'echo dans $plxshow->catName
Bonjour,
Dans la fonction $plxShow->catName remplacer :
if($type == 'link')
echo '<a href="'.$url.'" title="'.$name.'">'.$name.'</a>';
else
echo $name;
par
if($type == 'link')
echo '<a href="'.$url.'" title="'.$name.'">'.$name.'</a>';
elseif($type == 'get')
return $name;
else
echo $name;
Permet de choisir au niveau du thème si on affiche le texte brut ou alors le lien avec le balisage html