diff --git a/VERSIONS b/VERSIONS
index a95c0c506e47236565a3ee98be195fd06fe89503..50f570e6fb81e59048cdebd28eef799517590d30 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -22,11 +22,15 @@
 	- correction de l'affichage par bibliothèque qui amenait à une page vide dans certains cas.
 
 
-- Personnalisation du résultat de recherche:
-	- suppression de la mise en forme avec tables
-	- les facettes et tags peuvent être placés à gauche avec la règle CSS suivante:
+- Personnalisation: 
+	- résultat de recherche: 
+	   - suppression de la mise en forme avec tables
+	   - les facettes et tags peuvent être placés à gauche avec la règle CSS suivante:				
            .filtre_recherche {float:left}
 
+	- fiche abonné: les icônes peuvent ếtre surchargées par skin.
+	
+
 
 
 
diff --git a/library/ZendAfi/View/Helper/Abonne/Abstract.php b/library/ZendAfi/View/Helper/Abonne/Abstract.php
index 6bdf4545cfd7261ff67c428429a0b6544c75e615..5e7e7ac70004dbab1082e763060bd9371994c1a6 100644
--- a/library/ZendAfi/View/Helper/Abonne/Abstract.php
+++ b/library/ZendAfi/View/Helper/Abonne/Abstract.php
@@ -20,9 +20,12 @@
  */
 abstract class ZendAfi_View_Helper_Abonne_Abstract extends Zend_View_Helper_HtmlElement {
 	public function tagFicheAbonne($html, $icone='', $url='') {
-		if ($icone && $url)
+		if ($icone && $url) {
 			$html = $this->view->tagAnchor($url,
-																		 $this->view->tagImg(URL_SHARED_IMG.'/abonnes/'.$icone.'.png', ['alt' => $icone]) . $html);
+																		 $this->view->tagImg(Class_Profil::getCurrentProfil()
+																												 ->getUrlImage('/abonnes/'.$icone.'.png'),
+																												 ['alt' => $icone]) . $html);
+		}
 		return '<div class="abonneFiche">'.$html.'<div class="clear"></div></div>';
 	}
 }