From: Michael J. Rubinsky Date: Sat, 18 Jul 2009 00:06:30 +0000 (-0400) Subject: Fix percent encoding of the '+' character. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=51808842f0e4614c21601bec09805897b32173ae;p=horde.git Fix percent encoding of the '+' character. --- diff --git a/framework/Oauth/lib/Horde/Oauth/Utils.php b/framework/Oauth/lib/Horde/Oauth/Utils.php index 389eb5a55..c13f7c3fd 100644 --- a/framework/Oauth/lib/Horde/Oauth/Utils.php +++ b/framework/Oauth/lib/Horde/Oauth/Utils.php @@ -21,7 +21,7 @@ class Horde_Oauth_Utils public static function urlencodeRfc3986($string) { return str_replace(array('%7E', '+'), - array('~', '%20'), + array('~', '%2B'), rawurlencode($string)); }