diff --git a/inc-compilo-index.php3 b/inc-compilo-index.php3 index 03b1a0c154925b7c5b75726aa3bb2791b9479a24..a0c6736baf0eaf2d3fbbbe58562d2642b0130d00 100644 --- a/inc-compilo-index.php3 +++ b/inc-compilo-index.php3 @@ -157,10 +157,10 @@ function calculer_balise($nom, $p) { // ET s'il n'y a ni filtre ni etoile // ALORS retourner la couleur. // Ca permet si l'on veut vraiment de recuperer [(#ACCEDE*)] - if (ereg("^[\$]Pile[[]0[]][[]'([A-F]{1,6})'[]]$", $p->code, $match) + if (preg_match("/^[A-F]{1,6}$/i", $nom) AND !$p->etoile AND !$p->fonctions) { - $p->code = "'#". $match[1]."'"; + $p->code = "'#$nom'"; $p->statut = 'php'; }