]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix case of OAuthUtil method
authorEvan Prodromou <evan@controlyourself.ca>
Sat, 7 Mar 2009 21:35:19 +0000 (13:35 -0800)
committerEvan Prodromou <evan@controlyourself.ca>
Sat, 7 Mar 2009 21:35:19 +0000 (13:35 -0800)
actions/userauthorization.php

index 5fd8f8ccec7bf48f811c880058a7687f8636b784..0566b4b70bd0e825231ead79cd1085c1f74d4ed3 100644 (file)
@@ -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);