rleland     2002/10/29 18:31:23

  Modified:    src/share/org/apache/struts/taglib/logic ForwardTag.java
  Log:
  use method getModuleConfig instead of getApplicationConfig to
  used internally to class
  
  Revision  Changes    Path
  1.11      +5 -5      
jakarta-struts/src/share/org/apache/struts/taglib/logic/ForwardTag.java
  
  Index: ForwardTag.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-struts/src/share/org/apache/struts/taglib/logic/ForwardTag.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- ForwardTag.java   14 Oct 2002 18:16:18 -0000      1.10
  +++ ForwardTag.java   30 Oct 2002 02:31:23 -0000      1.11
  @@ -136,7 +136,7 @@
   
        // Look up the desired ActionForward entry
        ActionForward forward = null;
  -        ApplicationConfig config = RequestUtils.getApplicationConfig(pageContext);
  +        ApplicationConfig config = RequestUtils.getModuleConfig(pageContext);
        if (config != null)
            forward = (ActionForward) config.findForwardConfig(name);
        if (forward == null) {
  
  
  

--
To unsubscribe, e-mail:   <mailto:struts-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:struts-dev-help@;jakarta.apache.org>

Reply via email to