I also gave it a try to be XHTML compliant. A quick check showed me that there were at least 2 problems.
- url which include a number or parameters concatenated by & will not be strict XHTML
- The build in calendar code wont work as the calendar row are written using <TR> instead of <tr>
It’s not too difficult to resolve, in gm-library.cgi its just a matter of changing line 3460 to use lowercased TRs.
Comments
When you change the '&' into '&' in the URLs everything will work fine. (Valid XHTML and correct response from the browsers).
thanks, I didn't know that!