outputlink ignores user defined id
----------------------------------

                 Key: MYFACES-1676
                 URL: https://issues.apache.org/jira/browse/MYFACES-1676
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions: 1.2.0-SNAPSHOT
            Reporter: Denny Strietzbaum


The reason is a double negotiaton within
HtmlRendererUtils#writeIdAndNameIfNecessary(ResponseWriter, UIComponent, 
FacesContext)

if(component.getId()!=null && 
!!component.getId().startsWith(UIViewRoot.UNIQUE_ID_PREFIX))
must be
if(component.getId()!=null && 
!component.getId().startsWith(UIViewRoot.UNIQUE_ID_PREFIX))


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to