diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-10-14 18:23:36 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-10-14 18:23:36 +0200 |
| commit | 2cb2fae10d986db73bb0ad517df8c5334cab713c (patch) | |
| tree | 570f0e30ee9b249d677264f01e4482749ea4ee54 /controller/oauthcontroller.php | |
| parent | 62340c61f3ab49aa405c549b43e2cd910ab4d834 (diff) | |
| download | grauphel-2cb2fae10d986db73bb0ad517df8c5334cab713c.tar.gz grauphel-2cb2fae10d986db73bb0ad517df8c5334cab713c.zip | |
Add computer name input field on oauth authorization page
Diffstat (limited to 'controller/oauthcontroller.php')
| -rw-r--r-- | controller/oauthcontroller.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/controller/oauthcontroller.php b/controller/oauthcontroller.php index bc66de4..dfb02c5 100644 --- a/controller/oauthcontroller.php +++ b/controller/oauthcontroller.php @@ -132,10 +132,11 @@ class OauthController extends Controller $res->setParams( array( 'oauth_token' => $token->tokenKey, - 'client' => $clientTitle, + 'clientTitle' => $clientTitle, + 'clientAgent' => $clientAgent, 'formaction' => $this->deps->urlGen->linkToRoute( 'grauphel.oauth.confirm' - ) . '?client=' . urlencode($clientAgent), + ), ) ); return $res; @@ -178,8 +179,8 @@ class OauthController extends Controller } $clientAgent = ''; - if (isset($_GET['client'])) { - $clientAgent = $_GET['client']; + if (isset($_POST['client'])) { + $clientAgent = $_POST['client']; } //the user is logged in and authorized |
