- 1
[Opened] Plugin image et attribut alt
Posted by Rob2 on 11/24/2010 17:56
Bonjour,
En regardant le code du plugin image, j'ai vu que l'attribut alt est automatiquement ajouté s'il n'existe pas. Or, dans le foreach qui suit, il y a une ligne qui vérifie que les attributs ne sont pas vides, donc l'attribut alt est supprimé.
Voici le code en question :
if (!array_key_exists('alt',$att)) <code> $att['alt']=''; // Ici on ajoute l'attribut alt...
// generating hmtl tag img echo '<img'; foreach( $att as $key => $val ) {
if( !empty($val) ) // ...et ici on le supprime. echo ' '.$key.'="'.htmlspecialchars($val).'"';
}
</code>J'ouvre un ticket ?
Jelix 1.2.1.1
[Opened] Plugin image et attribut alt
Posted by laurentj on 11/30/2010 09:52
Oui, s'il te plait :-)
[Opened] Plugin image et attribut alt
- 1