Uploaded image for project: 'Struts 2'
  1. Struts 2
  2. WW-3571

Anchor tag is providing a default value for href attribute when it should not

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 2.1.8, 2.2.1.1
    • 7.0.0
    • None
    • None

    Description

      The Anchor tag is providing a default value for href attribute when it should not.

      Previous versions of Struts2 did not do this, and in fact the documentation for the tag also says there is no default value.

      However it is placing a default value of the current URL, rather than leaving the href attribute off altogether. (it is legal per HTML to not have an href attribute, and in fact we had existing code that was trying to purposely leave it off, but now instead of being left off, it is rendered with the current URL).

      I believe the problem was introduced with the changes related to WW-3037. This block of code (from Anchor.java) precisely:

          @Override
          protected void evaluateExtraParams() {
              super.evaluateExtraParams();
      
              if (href != null)
                  addParameter("href", ensureAttributeSafelyNotEscaped(findString(href)));
              else {
                  //no href, build it from URL attributes
                  StringWriter sw = new StringWriter();
                  urlRenderer.beforeRenderUrl(urlProvider);
                  urlRenderer.renderUrl(sw, urlProvider);
                  String builtHref = sw.toString();
                  if (StringUtils.isNotEmpty(builtHref))
                      addParameter("href", ensureAttributeSafelyNotEscaped(builtHref));
              }
          }
      

      To preserve documented and previous functionality of allowing href to not be rendered in the tag, the entire "else" block should be removed (of course that significantly negates WW-3037 - which apparently didn't think about the fact that it is legit to not have an href for the anchor).

      Attachments

        Activity

          People

            maurizio.cucchiara Maurizio Cucchiara
            jhouse James House
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated: