diff --git a/ecrire/inc/notifications.php b/ecrire/inc/notifications.php
index 4fa275570cc867bd49c757e58149a9c2f8a81561..cc605c0fd9d9b73fd73421ed74ab0e15b47fdc42 100644
--- a/ecrire/inc/notifications.php
+++ b/ecrire/inc/notifications.php
@@ -16,8 +16,10 @@ if (!defined("_ECRIRE_INC_VERSION")) return;
 // La fonction de notification de base, qui dispatche le travail
 // http://doc.spip.org/@inc_notifications_dist
 function inc_notifications_dist($quoi, $id=0, $options=array()) {
+	
 	// charger les fichiers qui veulent ajouter des definitions
-	pipeline('notifications');
+	// ou faire des trucs aussi dans le pipeline, ca fait deux api pour le prix d'une ...
+	pipeline('notifications',array('args'=>array('quoi'=>$quoi,'id'=>$id,'options'=>$options)));
 
 	if (function_exists($f = 'notifications_'.$quoi)
 	OR function_exists($f = $f.'_dist')) {