: 
 :         .
 : 
 : ~ 2 

/*****************  SQL- *********************
 CREATE TABLE IF NOT EXISTS `bb_user_comment` (
`comment_id` mediumint(5) NOT NULL AUTO_INCREMENT,
`user_id` int(5) NOT NULL,
`c_user_id` int(5) NOT NULL,
`comment_time` int(11) NOT NULL,
`comment_text` text CHARACTER SET utf8 NOT NULL,
PRIMARY KEY (`comment_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=28 ;
*************************************************************/

 config_mods.php     :

//    
$bb_cfg['profile_comment'] = true;
$bb_cfg['comment_limit'] = 30;
//    

 usercp_viewprofile.php

:
print_page('usercp_viewprofile.tpl');

 :
//    
if ($bb_cfg['profile_comment']){
	include(INC_DIR .'ucp/usercp_comment.php');
	$template->assign_vars(array('COMMENT_TRUE' => true,));
	}
//    

 usercp_viewprofile.tpl

:
<!-- Report [END] -->
</table><!--/user_profile-->

 :
<!--     -->
<!-- IF COMMENT_TRUE -->
<br><table class="bordered w100">
<tr>
<th colspan="4" class="thHead">{TH}</th>
</tr>
<tr>
<td colspan="4" class="row2 mar" align='center' >
{TEXTAREA}	
</td>
</tr>
<!-- IF SHOW -->
<tr>
	<td class="thHead" width="50"></td>
	<td class="thHead" width="100"></td>
	<td class="thHead"> </td>
</tr>
<!-- BEGIN comment -->
<tr class="row1">
	<td class="tCenter pad_4"><span class='comment'>{comment.USER}</span></td>
	<td class="tCenter pad_4"><span class='comment'>{comment.TIME}</span></td>
	<td class="tCenter pad_4"><span class='comment'>{comment.TEXT}</span></td>
</tr>
<!-- END comment -->
<!-- ENDIF -->
</table>	
<!-- ENDIF -->
<!--     -->

 main.css     :

/*     */
.comment   { font-size: 10px; color: #444444;}
.comment a { text-decoration: none; }
.mar {	padding: 10px;	}
/*     */

/************************************************************
 usercp_comment.php    /includes/ucp/
*************************************************************/