Fixed latest rides widget and settings workflow

This commit is contained in:
Justin Foell
2014-09-11 10:48:03 -05:00
parent 12d529e8ac
commit 76cb5f1b22
4 changed files with 55 additions and 85 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ class WPStrava_API {
'body' => http_build_query( $data ),
'sslverify' => false,
'headers' => array(
'Authorization' => 'Bearer: ' . $this->access_token,
'Authorization' => 'Bearer ' . $this->access_token,
)
);
@@ -53,7 +53,7 @@ class WPStrava_API {
$get_args = array(
'headers' => array(
'Authorization' => 'Bearer: ' . $this->access_token,
'Authorization' => 'Bearer ' . $this->access_token,
)
);