diff --git a/ecrire/exec/articles_forum.php b/ecrire/exec/articles_forum.php
index 6b967087ed5705acc45b03caeb4e00629ccfa3c5..8c3f5a8d2b7d21912d499ef7537be4fda9cc08c0 100644
--- a/ecrire/exec/articles_forum.php
+++ b/ecrire/exec/articles_forum.php
@@ -106,31 +106,4 @@ function articles_forum_cadres($id_rubrique, $titre, $script, $args)
 	echo "</td></tr></table>";
 	echo "<p>";
 }
-
-// http://doc.spip.org/@articles_forum_liens
-function articles_forum_liens($n, $script, $args, $curseur, $pack, $i)
-{
-
-
-	if ($i>0)
-		echo "<a href='" . generer_url_ecrire($script,$args) . "'>0</a> ... | ";
-	for (;$n;$n--){
-
-	// barre de navigation
-		if ($i == $pack*floor($i/$pack)) {
-			if ($i == $curseur)
-				echo "<font size='3'><b>$i</b></font>";
-			else
-				echo "<a href='", generer_url_ecrire($script,"$args&debut=$i") , "'>$i</a>";
-			echo " | ";
-		}
-
-		$i ++;
-	}
-
-	echo "<a href='", generer_url_ecrire($script,"$args&debut=$i") , "'>...</a>";
-
-	echo "</div>";
-}
-
 ?>