Revision: 2504
Author: seba.wagner
Date: Tue Oct 20 02:26:48 2009
Log: Fix Sign Up Form with new Version
http://code.google.com/p/openmeetings/source/detail?r=2504
Modified:
/trunk/singlewebapp/WebContent/openmeetings/base/auth/registerNewUser.lzx
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/base/auth/registerNewUser.lzx
Sat Oct 17 06:25:57 2009
+++
/trunk/singlewebapp/WebContent/openmeetings/base/auth/registerNewUser.lzx
Tue Oct 20 02:26:48 2009
@@ -104,7 +104,7 @@
this.parent.regObject["additionalname"]='';
this.parent.regObject["fax"]='';
this.parent.regObject["zip"]='';
-
this.parent.regObject["states_id"]=Number(this.parent.state.getValue());
+
this.parent.regObject["states_id"]=Number(this.parent._state.getValue());
this.parent.regObject["town"]='';
this.parent.regObject["language_id"]=0;
=======================================
---
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
Sat Oct 17 06:25:57 2009
+++
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
Tue Oct 20 02:26:48 2009
@@ -429,11 +429,11 @@
String port = regObject.get("port").toString();
String webapp = regObject.get("webapp").toString();
- String baseURL = "http://"+domain+":"+port+"/"+webapp+"/";
+ String baseURL = "http://"+domain+":"+port+webapp;
if (port.equals("80")) {
- baseURL = "http://"+domain+"/"+webapp+"/";
+ baseURL = "http://"+domain+webapp;
} else if (port.equals("443")) {
- baseURL = "https://"+domain+"/"+webapp+"/";
+ baseURL = "https://"+domain+webapp;
}
// else if (port.equals("8443")) {
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en
-~----------~----~----~----~------~----~------~--~---