Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.2.4 #19

Merged
merged 3 commits into from
Jul 26, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Readline ignores \n - add space between authorization URL and the sec…
…ond part of the promt
  • Loading branch information
mnovozhylov committed Jul 26, 2017
commit fe34f2dab8b475c4f32b8df44b8bfbd40729cd49
4 changes: 2 additions & 2 deletions src/Upwork/API/AuthTypes/AbstractOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ public function auth()
header('Location: ' . $authUrl);
} elseif (self::$_mode === 'nonweb') {
// authorize nonweb application
ApiDebug::p('found [nonweb] mode, need to autorize application manually');
ApiDebug::p('found [nonweb] mode, need to authorize application manually');

$prompt = 'Visit ' . $authUrl . "\n" .
$prompt = 'Visit ' . $authUrl . "\n " .
'and provide oauth_verifier for further authorization' . "\n" .
'$ ';
if (PHP_OS == 'WINNT') {
Expand Down