Index: core/print_api.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/core/print_api.php,v
retrieving revision 1.135
diff -u -r1.135 print_api.php
--- core/print_api.php	28 May 2005 00:54:34 -0000	1.135
+++ core/print_api.php	2 Jun 2005 13:16:15 -0000
@@ -6,7 +6,7 @@
 	# See the README and LICENSE files for details
 
 	# --------------------------------------------------------
-	# $Id$
+	# $Id: print_api.php,v 1.135 2005/05/28 00:54:34 thraxisp Exp $
 	# --------------------------------------------------------
 
 	$t_core_dir = dirname( __FILE__ ).DIRECTORY_SEPARATOR;
@@ -1051,8 +1051,8 @@
 	# print a button which presents a standalone form.
 	# if the $p_link is blank then the text is printed but no link is created
 	# if $p_new_window is true, link will open in a new window, default false.
-	function print_button( $p_action_page, $p_label ) {
-		echo '<form method="POST" action="', $p_action_page, '"><input type="submit" class="button" value="', $p_label, '" /></form>';
+	function print_button( $p_action_page, $p_label , $p_class = "button" ) {
+		echo '<form method="POST" action="', $p_action_page, '"><input type="submit" class="', $p_class, '" value="', $p_label, '" /></form>';
 	}
 	# --------------------
 	# print the bracketed links used near the top
Index: bugnote_view_inc.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/bugnote_view_inc.php,v
retrieving revision 1.30
diff -u -r1.30 bugnote_view_inc.php
--- bugnote_view_inc.php	16 May 2005 12:56:05 -0000	1.30
+++ bugnote_view_inc.php	2 Jun 2005 13:16:15 -0000
@@ -6,7 +6,7 @@
 	# See the files README and LICENSE for details
 
 	# --------------------------------------------------------
-	# $Id$
+	# $Id: bugnote_view_inc.php,v 1.30 2005/05/16 12:56:05 vboctor Exp $
 	# --------------------------------------------------------
 ?>
 <?php
@@ -134,14 +134,14 @@
 			if ( !bug_is_readonly( $f_bug_id ) ) {
 				if ( ( access_has_bug_level( config_get( 'manage_project_threshold' ), $f_bug_id ) ) ||
 					( ( $v3_reporter_id == $t_user_id ) && ( ON == config_get( 'bugnote_allow_user_edit_delete' ) ) ) ) {
-					print_button( 'bugnote_edit_page.php?bugnote_id='.$v3_id, lang_get( 'bugnote_edit_link' ) );
-					print_button( 'bugnote_delete.php?bugnote_id='.$v3_id, lang_get( 'delete_link' ) );
+					print_button( 'bugnote_edit_page.php?bugnote_id='.$v3_id, lang_get( 'bugnote_edit_link' ), 'button-small' );
+					print_button( 'bugnote_delete.php?bugnote_id='.$v3_id, lang_get( 'delete_link' ), 'button-small' );
 					if ( access_has_bug_level( config_get( 'private_bugnote_threshold' ), $f_bug_id ) &&
 						access_has_bug_level( config_get( 'change_view_status_threshold' ), $f_bug_id ) ) {
 						if ( VS_PRIVATE == $v3_view_state ) {
-							print_button('bugnote_set_view_state.php?private=0&amp;bugnote_id='.$v3_id, lang_get( 'make_public' ));
+							print_button('bugnote_set_view_state.php?private=0&amp;bugnote_id='.$v3_id, lang_get( 'make_public' ), 'button-small');
 						} else {
-							print_button('bugnote_set_view_state.php?private=1&amp;bugnote_id='.$v3_id, lang_get( 'make_private' ));
+							print_button('bugnote_set_view_state.php?private=1&amp;bugnote_id='.$v3_id, lang_get( 'make_private' ), 'button-small');
 						}
 					}
 				}
