Overview
Artifact ID: | 4a23a0cd4fe6630239b786deaf2ad677046e1731 |
---|---|
Ticket: | 675aaa3458199c8832c6879b43325ffb2fd62e75
fossil says valid html element is invalid |
User & Date: | renez 2010-09-22 07:50:35 |
Changes
- comment changed to:
<hr/> is a valid xhtml element. Fossil says it is not. However <hr /> and <hr id='hrid'/> are considered valid. The problem is in wikiformat.c:markupLength in the line while( isalnum(z[n]) ){ n++; } ==> if( (c = z[n])!='>' && !isspace(c) ) return 0; while( (c = z[n])!=0 && (c!='>' || inparen) ){
- foundin changed to: "3243e63bba"
- private_contact changed to: "735ae1c8a572d669bafab35cf8b1f5116c325c86"
- severity changed to: "Important"
- status changed to: "Open"
- title changed to: "fossil says valid html element is invalid"
- type changed to: "Code_Defect"