weaver 2003/07/14 07:03:54
Modified: src/java/org/apache/jetspeed/modules/actions/portlets
GenericMVCAction.java
Log:
Make sure that doPerform() is always called no matter what so that the correct
context can be built, otherwise the build context phase is skipped.
Revision Changes Path
1.3 +3 -1
jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/portlets/GenericMVCAction.java
Index: GenericMVCAction.java
===================================================================
RCS file:
/home/cvs/jakarta-jetspeed/src/java/org/apache/jetspeed/modules/actions/portlets/GenericMVCAction.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- GenericMVCAction.java 24 Mar 2003 14:02:21 -0000 1.2
+++ GenericMVCAction.java 14 Jul 2003 14:03:54 -0000 1.3
@@ -153,8 +153,10 @@
// no event selected, process normal context generation
Log.debug("Action: calling doPerform");
- doPerform(rundata, context);
+
}
+
+ doPerform(rundata, context);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]