diff --git a/bugnote_add_inc.php b/bugnote_add_inc.php
index 92715ef..d78c7d2 100644
--- a/bugnote_add_inc.php
+++ b/bugnote_add_inc.php
@@ -93,7 +93,7 @@ require_api( 'lang_api.php' );
 
 <?php
 	$t_default_bugnote_view_status = config_get( 'default_bugnote_view_status' );
-	$t_bugnote_private = $t_default_bugnote_view_status == VS_PRIVATE;
+	$t_bugnote_private = $t_default_bugnote_view_status == VS_PRIVATE &&  access_has_bug_level( config_get( 'set_view_status_threshold' ), $f_bug_id );
 	$t_bugnote_class = $t_bugnote_private ? 'form-control bugnote-private' : 'form-control';
 
 	if( access_has_bug_level( config_get( 'set_view_status_threshold' ), $f_bug_id ) ) {
@@ -111,6 +111,7 @@ require_api( 'lang_api.php' );
 			</tr>
 <?php }?>
 
+
 			<tr>
 				<th class="category" width="15%">
 					<?php echo lang_get( 'bugnote' ) ?>
@@ -146,9 +147,8 @@ require_api( 'lang_api.php' );
 		$t_file_upload_max_num = max( 1, config_get( 'file_upload_max_num' ) );
 		$t_max_file_size = file_get_max_file_size();
 
-		$t_attach_style = ( $t_default_bugnote_view_status != VS_PUBLIC ) ? 'display: none;' : '';
 ?>
-			<tr id="bugnote-attach-files" style="<?php echo $t_attach_style ?>">
+			<tr id="bugnote-attach-files">
 				<th class="category">
 					<?php echo lang_get( $t_file_upload_max_num == 1 ? 'upload_file' : 'upload_files' ) ?>
 					<br />
