Skip to content

Commit

Permalink
8.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Jul 17, 2023
2 parents a2acf9b + 3f29077 commit 249b9e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
# Stanford SSP

8.3.5
--------------------------------------------------------------------------------
_Release Date: 2023-07-17_

- Fixed url redirect for user create page.

8.3.3
--------------------------------------------------------------------------------
_Release Date: 2023-07-010_
_Release Date: 2023-07-10_

- Fixed unit testing.

Expand Down
2 changes: 1 addition & 1 deletion src/EventSubscriber/StanfordSSPEventSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function requestHandler(RequestEvent $event) {
$request->attributes->get('_route') == 'user.admin_create' &&
$this->stanfordConfig->get('hide_local_login')
) {
$destination = Url::fromRoute('stanford_ssp.add_user')->toString();
$destination = Url::fromRoute('stanford_ssp.create_user')->toString();
$event->setResponse(new RedirectResponse($destination));
}
}
Expand Down
2 changes: 1 addition & 1 deletion stanford_ssp.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Stanford SimpleSAML PHP
description: Configures SimpleSAML PHP auth to work in Stanford web environment
core_version_requirement: ^9 || ^10
type: module
version: 8.3.3
version: 8.3.5
package: Stanford
dependencies:
- simplesamlphp_auth:simplesamlphp_auth
Expand Down

0 comments on commit 249b9e3

Please sign in to comment.