From 6bbe28cf33c983474b59b76203e51b0189269c71 Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Thu, 17 Apr 2008 17:57:48 +0200 Subject: [PATCH] It seems that forlife are firstname.name.promo, not name.firstname.promo... Signed-off-by: Florent Bruneau --- plugins/function.make_forlife.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/function.make_forlife.php b/plugins/function.make_forlife.php index 8578f90..a9c94e7 100644 --- a/plugins/function.make_forlife.php +++ b/plugins/function.make_forlife.php @@ -22,7 +22,7 @@ require_once 'platal.inc.php'; function smarty_function_make_forlife($params, &$smarty) { - return make_forlife($params['nom'], $params['prenom'], $params['promo']); + return make_forlife($params['prenom'], $params['nom'], $params['promo']); } /* vim: set expandtab enc=utf-8: */ -- 2.1.4