==================
Update: Grab the comment.zip in post#36 to fix this
==================
There is a bug in the comment code which causes the comment form not to show up after the first comment is made on a 'PAGE' page. To fix this bug do the following
Edit comment.php and find line 79-80 (versions 341/344) which should be
HTML Code:
<?php // If comments are open
if ('open' == $post->comment_status) : ?>
HTML Code:
<?php // If comments are open
if ( ('open' == $post->comment_status)
OR ( is_page() and ('Yes' == $bfa_ata[comments_on_pages]) and ('open' == $post->comment_status) )) : ?>