Well, its nothing seriouse. Just something that bugs me ALOT.

If you have a code like this.
Code:
<div class="blah">
<if condition="$show['inlinemod']">
Blah
<else />
Blah blah
</if>
</div>
It will show up like this in the source.
Code:
<div class="blah">
Blah
</div>
How do I edit so they wont show up as new rows? I guess there is like \n\r or something at the end of the line(s) which parse that info. (adminfunctions_template.php maybe?

)