You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by Apache Wiki <wi...@apache.org> on 2008/02/26 17:03:34 UTC

[Struts Wiki] Trivial Update of "StrutsUpgradeNotes11to124" by DonAndrews

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.

The following page has been changed by DonAndrews:
http://wiki.apache.org/struts/StrutsUpgradeNotes11to124

The comment on the change is:
/* Added closing double-quote to URI in taglib examples */

------------------------------------------------------------------------------
  
  '''B.''' If you have used the simplified deployment allowed by Servlet 2.3 onwards (see [http://struts.apache.org/userGuide/configuration.html#dd_config_taglib_23 User Guide]) then this should also continue to work as versions of the tld's with the old uri have now been included in the struts.jar (and struts-el.jar). Its recommended that for new development that you use the new uri
  
-             Struts 1.1 {{{ <%@ taglib uri="http://jakarta.apache.org/struts/tags-html prefix="html" %> }}}
+             Struts 1.1 {{{ <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %> }}}
  
-             Struts 1.2.x {{{ <%@ taglib uri="http://struts.apache.org/tags-html prefix="html" %> }}}
+             Struts 1.2.x {{{ <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %> }}}
  
  
  == validator.xml ==