1 revdave Dec 06, 2005 23:55
3 xangelusx Mar 24, 2006 21:50
4 blueyed Mar 24, 2006 22:03
I've taken a quick look, but could not find it, sorry.
5 xangelusx Mar 27, 2006 13:59
I made a change to my copy of admin/_item.form.php to patch this:
// ################### COMMENT STATUS ###################
if( $Blog->allowcomments == 'never' )
{
$Form->hidden( 'post_comments', 'disabled' );
}
elseif( $Blog->allowcomments == 'always' )
{
$Form->hidden( 'post_comments', 'open' );
}
else //if( $Blog->allowcomments == 'post_by_post' )
{
$Form->begin_fieldset( T_('Comments') );
?>
<label title="<?php echo T_('Visitors can leave comments on this post.') ?>"><input type="radio" name="post_comments" value="open" class="checkbox" <?php if( $post_comments == 'open' ) echo 'checked="checked"'; ?> />
<?php echo T_('Open') ?></label><br />
<label title="<?php echo T_('Visitors can NOT leave comments on this post.') ?>"><input type="radio" name="post_comments" value="closed" class="checkbox" <?php if( $post_comments == 'closed' ) echo 'checked="checked"'; ?> />
<?php echo T_('Closed') ?></label><br />
<label title="<?php echo T_('Visitors cannot see nor leave comments on this post.') ?>"><input type="radio" name="post_comments" value="disabled" class="checkbox" <?php if( $post_comments == 'disabled' ) echo 'checked="checked"'; ?> />
<?php echo T_('Disabled') ?></label><br />
<?php
$Form->end_fieldset();
}
Thanks for reporting. This is a known bug and is fixed for the next release.