По поводу приватности, можно добавить такое. Особенно после добавления отображения клиента в версии 2.4.0

Добавляется это в functions.php
$bf['user_opt'] = array(
....
'hide_client' => 17, // Показывать торрент клиент
....
);
displaying_torrent.php
if(!bf($peer['user_opt'], 'user_opt', 'hide_client')){
$torrent_client = get_user_client(@$peer['peer_id']);
}
else{
$torrent_client = (IS_AM) ? get_user_client(@$peer['peer_id']). ' ('.$lang['HIDDEN'].')' : $lang['HIDDEN'];
}
usercp_register.php
$update_user_opt = [
...
'hide_client' => true,
...
];usercp_viewprofile.php
'PEER_ID' => (!bf($profiledata['user_opt'], 'user_opt', 'hide_client') OR IS_AM ) ? get_user_client(@$profiledata['peer_id']) : $lang['HIDDEN'],
usercp_register.php
<tr>
<td>{L_HIDE_CLIENT}:</td>
<td>
<div class="radio radio-inline">
<input type="radio" id="hide_client_yes" name="hide_client" value="1" <!-- IF HIDE_CLIENT -->checked="checked"<!-- ENDIF --> />
<label for="hide_client_yes">{L_YES}</label>
</div>
<div class="radio radio-inline">
<input type="radio" id="hide_client_no" name="hide_client" value="0" <!-- IF not HIDE_CLIENT -->checked="checked"<!-- ENDIF --> /><label for="hide_client_no">{L_NO}</label>
</div>
</td>
</tr>