Raphael,

did you deliberatly change the "screen.mainmenu" keys into 
"screen.homepage" or was this by mistake?
I created the screen.mainmenu to provide the possibility of setting the 
portal homepage differently from the "Logged-in-user homepage",
e.g.

screen.homepage = login (i.e. users that are not logged in are sent to the 
login screen)
screen.mainmenu = home  (logged in users get the home screen [if no other 
screen is defined])

Your changes would break this configurability.

ingo.


Index: ConfirmRegistration.java
===================================================================
RCS file: 
/products/cvs/jetspeed/jetspeed/src/java/org/apache/jetspeed/modules/screens/ConfirmRegistration.java,v
 

retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ConfirmRegistration.java 2000/11/24 17:57:55 1.3
+++ ConfirmRegistration.java 2000/12/11 23:59:51 1.4
@@ -75,7 +75,7 @@
String nextscreen = data.getParameters().getString ( "nextscreen", null );
if ( nextscreen == null || nextscreen.equalsIgnoreCase("ConfirmRegistration"))
- nextscreen = TurbineResources.getString( "screen.mainmenu" );
+ nextscreen = TurbineResources.getString( "screen.homepage" );
Form form = new Form ( new DynamicURI ( data, nextscreen, 
TurbineResources.getString( "action.login" ), true ).toString()
, Form.POST ); 



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://marc.theaimsgroup.com/?l=jetspeed>
Problems?:           [EMAIL PROTECTED]

Reply via email to