Skip to content

Commit 211ed0e

Browse files
committed
Fix: implode(): Invalid arguments passed
1 parent 2dd3774 commit 211ed0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controller/Component/XeroOauthComponent.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public function getConfigurations()
7272
'urlAuthorize' => $this->getConfig('urlAuthorize'),
7373
'urlAccessToken' => $this->getConfig('urlAccessToken'),
7474
'urlResourceOwnerDetails' => $this->getConfig('urlResourceOwnerDetails'),
75-
'scope' => implode(' ', Configure::read('scope')),
75+
'scope' => implode(' ', Configure::read('XeroOauth2.scope')),
7676
];
7777
}
7878

0 commit comments

Comments
 (0)