diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 13:32:44 -0800 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 13:32:44 -0800 |
commit | ba9c589bb2616fb1bdcb2416a934a8f91cd401e5 (patch) | |
tree | f91e245d5b064c71b048a626d5a291ccb35e17a5 | |
parent | 2400589c2fc9355679b5da318286ecf96e386133 (diff) |
fix for change in OAuthUtil upstream
-rw-r--r-- | actions/userauthorization.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/userauthorization.php b/actions/userauthorization.php index 0dc1841d4..5fd8f8cce 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -197,7 +197,7 @@ class UserauthorizationAction extends Action } $parts = array(); foreach ($params as $k => $v) { - $parts[] = $k . '=' . OAuthUtil::urlencodeRFC3986($v); + $parts[] = $k . '=' . OAuthUtil::urlencode_RFC3986($v); } $query_string = implode('&', $parts); $parsed = parse_url($callback); |