From: Peter W. <pe...@op...> - 2004-10-01 17:47:08
|
In a couple of places Slash have 'CHECKED' hardcoded. This is then used on markup like this: <input type="checkbox" name="reparent" CHECKED> This is not a problem as long as you are using HTML, but if you are using XHTML the above markup have to look like this: <input type="checkbox" name="reparent" checked="checked" /> The attached patch changes 'CHECKED' the source to use a var, that way it's possible to use XHTML without code changes and still easy to switch between HTML and XHTML. Any comments? -- Peter Winnberg <pe...@op...> Openflows Networks Ltd. |