diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 13:35:19 -0800 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-07 13:35:19 -0800 |
commit | 1a63d7d8299259dc13c8b21700bf441123947d3a (patch) | |
tree | 03da0b089ba1536cef5d9e1fd7df3f8c3b1cc759 | |
parent | ba9c589bb2616fb1bdcb2416a934a8f91cd401e5 (diff) |
fix case of OAuthUtil method
-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 5fd8f8cce..0566b4b70 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::urlencode_RFC3986($v); + $parts[] = $k . '=' . OAuthUtil::urlencode_rfc3986($v); } $query_string = implode('&', $parts); $parsed = parse_url($callback); |