dgraham 2003/07/04 14:22:15
Modified: src/share/org/apache/struts/tiles ActionController.java
Log:
Call Action.execute() instead of perform().
Revision Changes Path
1.5 +9 -4
jakarta-struts/src/share/org/apache/struts/tiles/ActionController.java
Index: ActionController.java
===================================================================
RCS file:
/home/cvs/jakarta-struts/src/share/org/apache/struts/tiles/ActionController.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ActionController.java 4 Jul 2003 21:21:05 -0000 1.4
+++ ActionController.java 4 Jul 2003 21:22:15 -0000 1.5
@@ -105,6 +105,11 @@
ServletContext servletContext)
throws ServletException, IOException {
- action.perform(null, null, request, response);
+ try {
+ action.execute(null, null, request, response);
+
+ } catch (Exception e) {
+ throw new ServletException(e);
+ }
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]