Skip to content

Commit

Permalink
fix fixedLogout.patch (v2.19.0-6)
Browse files Browse the repository at this point in the history
  • Loading branch information
guimard committed May 27, 2024
1 parent edc73d4 commit 43e73be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ env:
VERSION: 2.19.0
PGVERSION: 15
DEBIANRELEASE: bookworm
DOCKERREVISION: 5
DOCKERREVISION: 6

on:
push:
Expand Down
1 change: 1 addition & 0 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changes

* 2024-05-27: fix fixedLogout.patch (v2.19.0-6)
* 2024-05-22: add yadd/lemonldap-ng-portal-hiperf (v2.19.0-5)
* 2024-05-21: add libfcgi-engine-perl, libfcgi-procmanager-maxrequests-perl, FCGI::ProcManager::Dynamic (v2.19.0-4)
* 2024-05-14 (v2.19.0-3):
Expand Down
2 changes: 1 addition & 1 deletion portal/fixedLogout.patch
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
+sub run {
+ my ( $self, $req ) = @_;
+ if ( $self->conf->{fixedLogoutRedirection} ) {
+ $req->logger->debug("Force logout redirection");
+ $self->logger->debug("Force logout redirection");
+ $req->mustRedirect(1);
+ $req->urldc( $self->conf->{fixedLogoutRedirection} );
+ }
Expand Down
2 changes: 1 addition & 1 deletion uwsgi-portal/fixedLogout.patch
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
+sub run {
+ my ( $self, $req ) = @_;
+ if ( $self->conf->{fixedLogoutRedirection} ) {
+ $req->logger->debug("Force logout redirection");
+ $self->logger->debug("Force logout redirection");
+ $req->mustRedirect(1);
+ $req->urldc( $self->conf->{fixedLogoutRedirection} );
+ }
Expand Down

0 comments on commit 43e73be

Please sign in to comment.