From 79fe89c7f164e414a9600adb7c24c3e8022eac4d Mon Sep 17 00:00:00 2001 From: rrajoria Date: Tue, 21 Mar 2023 19:19:12 +0530 Subject: [PATCH] create Reset Password Test Case --- .../repo/security/authentication/ResetPasswordServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repository/src/main/java/org/alfresco/repo/security/authentication/ResetPasswordServiceImpl.java b/repository/src/main/java/org/alfresco/repo/security/authentication/ResetPasswordServiceImpl.java index 5ec0fa2d0c..4e6cb0835a 100644 --- a/repository/src/main/java/org/alfresco/repo/security/authentication/ResetPasswordServiceImpl.java +++ b/repository/src/main/java/org/alfresco/repo/security/authentication/ResetPasswordServiceImpl.java @@ -540,7 +540,7 @@ public class ResetPasswordServiceImpl implements ResetPasswordService if(!StringUtils.isEmpty(clientApp.getProperty("workspaceUrl"))) { - String workspaceUrlPlaceholder = clientApp.getProperty("workspaceUrlPlaceholder"); + String workspaceUrlPlaceholder = clientApp.getProperty("workspaceUrl"); String workSpaceUrl = getRepoBaseUrl(workspaceUrlPlaceholder,""); sb.append(UrlUtil.replaceWorkSpaceUrlPlaceholder(pageUrl,workSpaceUrl)); LOGGER.warn("Client Name is " + clientApp.getName() + " The url used is " + sb.toString());