Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit 05387cb

Browse files
author
Billy Clark
committed
team decided to change where forgotPassword data was coming from.
1 parent 35cc589 commit 05387cb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker-compose.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ services:
6060
SECRET_SALT: "edI4GGkYfkzD6/OXFvHBHb9Meu9hdKXQpNFg4q/GGfY="
6161
IDP_NAME: "Idp 2"
6262
ANALYTICS_ID: "UA-XXXX-Y"
63-
CHANGE_PWD_URL: "http://example.org"
63+
PASSWORD_CHANGE_URL: "http://example.org"
64+
PASSWORD_FORGOT_URL: "http://example.org"
65+
6466
hub2:
6567
image: silintl/ssp-base:develop
6668
volumes:

themes/material/core/loginuserpass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function onRecaptchaLoad() {
109109

110110
<div class="mdl-card__actions" layout-children="row">
111111
<?php
112-
$forgotPasswordUrl = htmlentities($this->data['forgotPasswordUrl'] ?? null);
112+
$forgotPasswordUrl = htmlentities($this->configuration->getValue('forgotPasswordUrl'));
113113
if (! empty($forgotPasswordUrl)) {
114114
?>
115115
<a href="<?= $forgotPasswordUrl ?>" target="_blank"

0 commit comments

Comments
 (0)