Skip to content

Commit 95d46ce

Browse files
authored
Merge pull request #884 from NethmiRanasinghe/org-feature
Fix orgname being null in devportal
2 parents b5f1118 + 68bc439 commit 95d46ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

portals/devportal/src/main/webapp/services/login/login_callback.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
if (encodedOrg != null) {
270270
encodedOrg = URLEncoder.encode(organization, "UTF-8");
271271
}
272-
cookie = new Cookie("ORGANIZATION_DEFAULT", encodedOrg);
272+
cookie = new Cookie("ORGANIZATION_Default", encodedOrg);
273273
cookie.setPath(context + "/");
274274
cookie.setSecure(true);
275275
cookie.setMaxAge((int) expiresIn);

portals/devportal/src/main/webapp/services/logout/logout_callback.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
cookie.setMaxAge(2);
7979
response.addCookie(cookie);
8080
81-
cookie = new Cookie("ORGANIZATION_DEFAULT", "");
81+
cookie = new Cookie("ORGANIZATION_Default", "");
8282
cookie.setPath(context + "/");
8383
cookie.setSecure(true);
8484
cookie.setMaxAge(2);

0 commit comments

Comments
 (0)