extra space in setting html fields

Talk about writing modules and plugins for CMS Made Simple, or about specific core functionality. This board is for PHP programmers that are contributing to CMSMS not for site developers
Post Reply
brownrl
Forum Members
Forum Members
Posts: 74
Joined: Thu Sep 23, 2004 11:06 am

extra space in setting html fields

Post 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
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm

extra space in setting html fields

Post 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?
brownrl
Forum Members
Forum Members
Posts: 74
Joined: Thu Sep 23, 2004 11:06 am

Bug

Post 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>
Ted
Power Poster
Power Poster
Posts: 3329
Joined: Fri Jun 11, 2004 6:58 pm

extra space in setting html fields

Post by Ted »

That's too weird. I guess I can look around and see if smarty has something to do with it.
Post Reply

Return to “Developers Discussion”