-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
29 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
diff --git a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/LoginWorker.java b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/LoginWorker.java | ||
index be8ca2c..e6a9b07 100644 | ||
index 9fe1f7f..8731a8d 100644 | ||
--- a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/LoginWorker.java | ||
+++ b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/LoginWorker.java | ||
@@ -731,7 +731,7 @@ | ||
@@ -985,11 +985,11 @@ | ||
} | ||
|
||
protected static String getAutoLoginCookieName(HttpServletRequest request) { | ||
- return UtilHttp.getApplicationName(request) + ".autoUserLoginId"; | ||
+ return UtilHttp.getApplicationName(request).replaceAll("/", ".") + ".autoUserLoginId"; | ||
} | ||
|
||
protected static String getSecuredLoginIdCookieName(HttpServletRequest request) { | ||
- return UtilHttp.getApplicationName(request) + ".securedLoginId"; | ||
+ return UtilHttp.getApplicationName(request).replaceAll("/", ".") + ".securedLoginId"; | ||
} | ||
|
||
public static String getAutoUserLoginId(HttpServletRequest request) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters