From 1c76f8de2c01d17557ef3cceb65c67355526d95e Mon Sep 17 00:00:00 2001
From: Fil <fil@rezo.net>
Date: Thu, 2 Feb 2006 23:53:40 +0000
Subject: [PATCH] debogage des plugins (Cedric)

---
 ecrire/inc_utils.php | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/ecrire/inc_utils.php b/ecrire/inc_utils.php
index 08a7f2b18d..7cfc2df4d8 100644
--- a/ecrire/inc_utils.php
+++ b/ecrire/inc_utils.php
@@ -86,28 +86,25 @@ function pipeline($action, $val) {
 	if (!isset($pipe[$action]))
 		$pipe[$action] = array_filter(explode('|',$spip_pipeline[$action]));
 
-	$args= func_get_args();
-	array_shift($args);
-
 	// Eclater le pipeline en filtres et appliquer chaque filtre
 	foreach ($pipe[$action] as $fonc) {
 
 		// fonction
 		if (function_exists($fonc))
-			$val = call_user_func_array($fonc, $args);
+			$val = call_user_func($fonc, $val);
 
 		// Class::Methode
 		else if (preg_match("/^(\w*)::(\w*)$/", $fonc, $regs)                            
 		AND $methode = array($regs[1], $regs[2])
 		AND is_callable($methode))
-			$val = call_user_func_array($methode, $args);
+			$val = call_user_func($methode, $val);
 
 		// Charger un fichier
 		else if ($f = $spip_matrice[$fonc]) {
 			require_once($f);
 			// fonction (2eme chance)
 			if (function_exists($fonc))
-				$val = $fonc($val);
+				$val = call_user_func($fonc, $val);
 			// Class::Methode (2eme chance)
 			else if (preg_match("/^(\w*)::(\w*)$/", $fonc, $regs)                            
 			AND $methode = array($regs[1], $regs[2])
-- 
GitLab