Page 1 of 1

extra space in setting html fields

Posted: Wed Sep 29, 2004 1:32 am
by brownrl
I get an extra space in the html output to the browser in situations like this:

Code: Select all

<input type = "text">
becomes

Code: Select all

<input type = " text">
something i need to do?

Rob

extra space in setting html fields

Posted: Wed Sep 29, 2004 2:07 am
by Ted
Is it a bug in the WYSIWYG? If you click the it'll show the source it's going to save. Is it in there?

Bug

Posted: Wed Sep 29, 2004 10:47 am
by brownrl
Nope everywhere in my contents and in the template as well.

Whenever I set soemthing:

This is the original text:

Code: Select all

<form action = "" method = "POST">
<input type = "text" name = "first_name">
<input type = "submit" name = "subby" value = "     Send     ">
</form>
This is the output:

Code: Select all

<form action =" " method =" POST">
<input type =" text" name =" first_name">
<input type =" submit" name =" subby" value ="      Send     ">
</form>

extra space in setting html fields

Posted: Wed Sep 29, 2004 11:52 am
by Ted
That's too weird. I guess I can look around and see if smarty has something to do with it.