Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Comments, trackbacks & pings (http://forum.bytesforall.com/forumdisplay.php?f=19)
-   -   Problem with legacy comments in 3.3.2 (http://forum.bytesforall.com/showthread.php?t=1247)

itomkins Apr 13, 2009 06:04 AM

Problem with legacy comments in 3.3.2
 
Hi,

I am not sure if this has been covered elsewhere but I thought I would point it out just in case.

I have found a minor bug in the legacy.comments.php file

In the section that reads:
Code:

<?php // If comments are open
if ('open' == $post->comment_status) : ?>

        <h3 class="reply"><?php _e('Leave a Reply','atahualpa'); ?></h3>

There is a missing <div>, I believe it should read like this:
Code:

<?php // If comments are open
if ('open' == $post->comment_status) : ?>

        <div id="respond">
        <h3 class="reply"><?php _e('Leave a Reply','atahualpa'); ?></h3>

Otherwise the comment submit section of the page is not styled right and the page will also fail XHTML validation.

Flynn Apr 14, 2009 06:26 PM

You're right. Thank you for finding this very hidden bug.


All times are GMT -6. The time now is 05:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.