Skip to content
Snippets Groups Projects
Unverified Commit 312819bc authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

oauth: remove unused variables

parent cfa0d776
No related branches found
No related tags found
No related merge requests found
...@@ -236,7 +236,7 @@ abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod ...@@ -236,7 +236,7 @@ abstract class OAuthSignatureMethod_RSA_SHA1 extends OAuthSignatureMethod
$privatekeyid = openssl_get_privatekey($cert); $privatekeyid = openssl_get_privatekey($cert);
// Sign using the key // Sign using the key
$ok = openssl_sign($base_string, $signature, $privatekeyid); openssl_sign($base_string, $signature, $privatekeyid);
// Release the key resource // Release the key resource
openssl_free_key($privatekeyid); openssl_free_key($privatekeyid);
...@@ -478,15 +478,15 @@ class OAuthRequest ...@@ -478,15 +478,15 @@ class OAuthRequest
/** /**
* builds the Authorization: header * builds the Authorization: header
*/ */
public function to_header($realm = null) { public function to_header($realm = null)
{
$first = true; $first = true;
if($realm) { if ($realm) {
$out = 'Authorization: OAuth realm="' . OAuthUtil::urlencode_rfc3986($realm) . '"'; $out = 'Authorization: OAuth realm="' . OAuthUtil::urlencode_rfc3986($realm) . '"';
$first = false; $first = false;
} else } else
$out = 'Authorization: OAuth'; $out = 'Authorization: OAuth';
$total = array();
foreach ($this->parameters as $k => $v) { foreach ($this->parameters as $k => $v) {
if (substr($k, 0, 5) != "oauth") continue; if (substr($k, 0, 5) != "oauth") continue;
if (is_array($v)) { if (is_array($v)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment