PluXml icon indicating copy to clipboard operation
PluXml copied to clipboard

Return au lieu d'echo dans $plxshow->catName

Open Philippe-M opened this issue 4 years ago • 0 comments

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

Philippe-M avatar Aug 24 '20 14:08 Philippe-M