summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/LoginForm.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-11-21 14:22:44 +0200
committerLeif Åstrand <leif@vaadin.com>2012-11-21 14:22:58 +0200
commit6ed87c1b6ce280082c2dee21a6f87c1620e0ea79 (patch)
tree907c13b4491867904034218c00b335781ddd6783 /server/src/com/vaadin/ui/LoginForm.java
parent416b8a6d6b9eb580454f006b38a72ffe7f484638 (diff)
downloadvaadin-framework-6ed87c1b6ce280082c2dee21a6f87c1620e0ea79.tar.gz
vaadin-framework-6ed87c1b6ce280082c2dee21a6f87c1620e0ea79.zip
Remove slashes from beginning or end of constants (#10140)
* Also rename the constants to cause compile errors in 3rd party code Change-Id: If96c9956de7737345ec9372be28292b3490387a2
Diffstat (limited to 'server/src/com/vaadin/ui/LoginForm.java')
-rw-r--r--server/src/com/vaadin/ui/LoginForm.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/LoginForm.java b/server/src/com/vaadin/ui/LoginForm.java
index 9c131b9700..8e35b0b2ac 100644
--- a/server/src/com/vaadin/ui/LoginForm.java
+++ b/server/src/com/vaadin/ui/LoginForm.java
@@ -119,8 +119,8 @@ public class LoginForm extends CustomComponent {
// Generate magic URL now when UI id and connectorId are known
iframe.setSource(new ExternalResource(
ApplicationConstants.APP_PROTOCOL_PREFIX
- + ApplicationConstants.APP_REQUEST_PATH + '/'
- + ConnectorResource.CONNECTOR_REQUEST_PATH
+ + ApplicationConstants.APP_PATH + '/'
+ + ConnectorResource.CONNECTOR_PATH + '/'
+ getUI().getUIId() + '/' + getConnectorId() + "/login"));
super.beforeClientResponse(initial);
}