From 9169d55a5c9083b9ceadc7a385f262ed1b589280 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Mon, 19 Sep 2011 20:55:17 +0200 Subject: [PATCH] Raw must be specified, it sould not be set as default. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Jacob --- plugins/function.profile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/function.profile.php b/plugins/function.profile.php index fe40261..abfb165 100644 --- a/plugins/function.profile.php +++ b/plugins/function.profile.php @@ -27,7 +27,7 @@ function smarty_function_profile($params, $smarty) $with_link = $params->b('link', true); $with_dir = $params->b('directory', true); $with_groupperms = $params->b('groupperms', true); - $raw = $params->b('raw', true); + $raw = $params->b('raw', false); $user = $params->v('user'); if (is_int($user) || ctype_digit($user)) { $user = User::getWithUID($user); -- 2.1.4