Skip to content

Commit

Permalink
Merge branch 'release-2.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
nikosev committed Sep 7, 2022
2 parents e66f72a + 8974410 commit 60e2449
Show file tree
Hide file tree
Showing 3 changed files with 289 additions and 147 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v2.3.1] - 2022-09-07

### Fixed

- Fix "Undefined variable: userInfo" error

### Changed

- Update `jumbojett/OpenID-Connect-PHP` library to v0.9.8

## [v2.3.0] - 2022-07-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<img class="sticky" src="<?= $img; ?>" alt="Logo" style="height: 60px; width: 60px; margin-bottom: 20px;">
<h1 style="display: inline;"><?= $title; ?></h1>
<p style="margin-bottom: 0px;"><strong>Client ID: </strong> <?= $clientId; ?></p>
<p><strong>User Info: </strong> <?= var_export($userInfo, true); ?></p>
<p><strong>User Info: </strong> <?= var_export($oidc->requestUserInfo(), true); ?></p>
<p class="lead" style="margin-bottom: 0px;">Access Token: </p>
<input id="access_token" size=70 type="text" readonly style="cursor: text;" value="<?= $accessToken; ?>" />
<?php if (!empty($refreshToken)) : ?>
Expand Down
Loading

0 comments on commit 60e2449

Please sign in to comment.