30-Dec-2011, 01:19 PM
I'm not sure if this is something which only affects me (I kinda been messing around in the source code), but I also saw this is happening in the demo.
Currently the comment_text is formatted like this:
Currently the comment_text is formatted like this:
PHP Code:
<?php
<div class='comment_text'>First paragraph<p />Second paragraph</div>
However, wouldn't it make more sense if it was formatted like this:
PHP Code:
<?php
<div class='comment_text'><p>First paragraph</p><p>Second paragraph</p></div>