Skip to content

Commit

Permalink
Merge branch 'release/3.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rhukster committed Aug 31, 2021
2 parents 88d6fcd + 8fabc94 commit 117db8f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v3.5.1
## 08/31/2021

1. [](#bugfix)
* Fixed white-page during new install with admin

# v3.5.0
## 08/31/2021

Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Login
slug: login
type: plugin
version: 3.5.0
version: 3.5.1
testing: false
description: Enables user authentication and login screen.
icon: sign-in
Expand Down
4 changes: 4 additions & 0 deletions login.php
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,10 @@ public function authorizeFallBackUrl(): void
*/
public function authorizeLoginPage(Event $event): void
{
if ($this->isAdmin()) {
return;
}

$page = $event['page'];
if (!$page instanceof PageInterface) {
return;
Expand Down

0 comments on commit 117db8f

Please sign in to comment.