From: Stéphane Jacob Date: Mon, 19 Sep 2011 18:55:17 +0000 (+0200) Subject: Raw must be specified, it sould not be set as default. X-Git-Tag: xorg/1.1.4~161 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=9169d55a5c9083b9ceadc7a385f262ed1b589280;p=platal.git Raw must be specified, it sould not be set as default. Signed-off-by: Stéphane Jacob --- 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);