Skip to content

Commit ce9b209

Browse files
committed
Merge branch 'release/3.7.3'
2 parents 9082500 + 7023a96 commit ce9b209

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v3.7.3
2+
## 02/17/2023
3+
4+
1. [](#bugfix)
5+
* Fixed an issue where user was not being redirected to the correct page after login
6+
17
# v3.7.2
28
## 01/02/2023
39

blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Login
22
slug: login
33
type: plugin
4-
version: 3.7.2
4+
version: 3.7.3
55
testing: false
66
description: Enables user authentication and login screen.
77
icon: sign-in

login.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ public function storeReferrerPage(): void
337337
if ($page) {
338338
$header = $page->header();
339339

340-
$allowed = ($header->login_redirect_here ?? true) === false;
340+
$allowed = ($header->login_redirect_here ?? true) === true;
341341
if ($allowed && $page->routable()) {
342342
$redirect = $page->route();
343343
foreach ($uri->params(null, true) as $key => $value) {

0 commit comments

Comments
 (0)