From 5ffcbb7c3eb31bdbf2dc4dd8b084ca8457c3c19d Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Wed, 24 Oct 2007 22:31:40 +0200 Subject: [PATCH] Fix a missing urlencode in group auth that leads to some encoding failures Signed-off-by: Florent Bruneau --- modules/auth/auth.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auth/auth.inc.php b/modules/auth/auth.inc.php index bcd8b5b..9fd9c69 100644 --- a/modules/auth/auth.inc.php +++ b/modules/auth/auth.inc.php @@ -23,7 +23,7 @@ function gpex_prepare_param($name, $val, &$to_hash, $charset) { $val = iconv('UTF-8', $charset, $val); $to_hash .= $val; - return '&' . $name . '=' . $val; + return '&' . $name . '=' . urlencode($val); } function gpex_make($chlg, $privkey, $datafields, $charset) -- 2.1.4