diff --git a/CHANGES.md b/CHANGES.md index 5e543afa..613835ed 100755 --- a/CHANGES.md +++ b/CHANGES.md @@ -8,6 +8,7 @@ # Corrections - Message de réinitialisation de mot de passe non envoyé. - Complète le message d'erreur lorsque des modules PHP sont absents. +- Les liens dans le pied de page prennent la couleur définie dans le site. ## Version 13.0.02 # Corrections diff --git a/core/class/router.class.php b/core/class/router.class.php index 02d497ec..7f44091f 100644 --- a/core/class/router.class.php +++ b/core/class/router.class.php @@ -302,7 +302,7 @@ class core extends common $css .= 'footer span, #footerText > p {color:' . $this->getData(['theme', 'footer', 'textColor']) . ';font-family:' . $fonts[$this->getData(['theme', 'footer', 'font'])] . ';font-weight:' . $this->getData(['theme', 'footer', 'fontWeight']) . ';font-size:' . $this->getData(['theme', 'footer', 'fontSize']) . ';text-transform:' . $this->getData(['theme', 'footer', 'textTransform']) . '}'; $css .= 'footer {background-color:' . $colors['normal'] . ';color:' . $this->getData(['theme', 'footer', 'textColor']) . '}'; - $css .= 'footer a{color:' . $this->getData(['theme', 'footer', 'textColor']) . '}'; + //$css .= 'footer a{color:' . $this->getData(['theme', 'footer', 'textColor']) . '}'; $css .= 'footer #footersite > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}'; $css .= 'footer #footerbody > div {margin:' . $this->getData(['theme', 'footer', 'height']) . ' 0}';