Hi!

Having something like
  <input type="..." name="...">
and using [$ hidden $], it will be converted to
  <input type="..." name="..." value="...">
which is fine. 

But I am trying to use XHTML, where the syntax would be
  <input type="..." name="..." />   (*)
which is converted to
  <input type="..." name="..." / value="...">
which is not ok. Instead it should, of course, be
  <input type="..." name="..." value="..." />

*) note the space before the slash. This is so that HTML browsers will
   still understand it.

Jochen
-- 
Jochen Topf  [EMAIL PROTECTED]  http://www.remote.org/jochen/  +49-721-388298


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to