diff --git a/core/lib/class.plx.show.php b/core/lib/class.plx.show.php
index 168990c..4bd705e 100644
--- a/core/lib/class.plx.show.php
+++ b/core/lib/class.plx.show.php
@@ -1410,6 +1410,51 @@ class plxShow {
 		}
 	}
 
+ 	/**
+	 * Méthode qui affiche la liste des articles pour un même tag
+	 *
+	 * @param	format	format du texte pour chaque article (variable : #art_status, #art_id, #art_url, #art_title)
+	 * @param	max		nombre maxi d'articles à afficher
+	 * @return	stdout
+	 * @scope	global
+	 * @author	Paul Kocialkowski
+	 **/
+	public function tagArtsList($tagname, $format='<li class="#art_status" id="#art_id"><a href="#art_url" class="fadeThis" title="#art_title"><span class="title">#art_title</span></a></li>', $max='') {
+		$count = 0;
+		$plxGlob_arts = clone $this->plxMotor->plxGlob_arts;
+		if($aFiles = $plxGlob_arts->query('/^[0-9]{4}.*.[0-9]{3}.[0-9]{12}.[a-z0-9-]+.xml/','art','rsort',0,'','before')) {
+			foreach($aFiles as $v) {
+				$art = $this->plxMotor->parseArticle(PLX_ROOT.$this->plxMotor->aConf['racine_articles'].$v);
+
+				$taglist = $art['tags'];
+				$tags = array_map('trim', explode(',', $taglist));
+				foreach($tags as $idx => $tag) {
+					if($tag == $tagname) {
+						if(isset($max) && $count >= $max)
+							break;
+
+						if(($this->plxMotor->mode == 'article') AND ($art['numero'] == $this->plxMotor->cible))
+							$status = 'active';
+						else
+							$status = 'noactive';
+
+						$id = $art['numero'];
+						$title = plxUtils::strCheck($art['title']);
+						$url = $this->plxMotor->urlRewrite('?article'.$id.'/'.$art['url']);
+						$display = str_replace('#art_id',$url,"article-$id");
+						$display = str_replace('#art_url',$url,$format);
+						$display = str_replace('#art_title',$title,$display);
+						$display = str_replace('#art_status',$status,$display);
+
+						echo $display;
+
+						$count++;
+					}
+				}
+			}
+		}
+	}
+
 	/**
 	 * Méthode qui affiche la liste des archives
 	 *
@@ -1571,4 +1616,4 @@ class plxShow {
 	}
 
 }
-?>
\ No newline at end of file
+?>
