If anyone wants to restrict the display of the Server type values on the main page, do the following change to STATISTIC template:
Find
PHP Code:
<td class="alt2">$webserver</td>
</tr>
<tr>
<td class="alt1"><img src="statistic/images/misc/php.gif" alt="$vbphrase[vbstatistic_infos_data_dec]" width="32" height="32" border="0" /></td>
<td class="alt1">$vbphrase[vbstatistic_php_version]</td>
<td class="alt1">$phpversion</td>
</tr>
<tr>
<td class="alt2"><img src="statistic/images/misc/sql.gif" alt="$vbphrase[vbstatistic_infos_data_dec]" width="32" height="32" border="0" /></td>
<td class="alt2">$vbphrase[vbstatistic_sql_version]</td>
<td class="alt2">$mysqlversion</td>
Replace with:
PHP Code:
<td class="alt2"><if condition="$bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7">$webserver<else /><strong>Admin only!</strong></if></td>
</tr>
<tr>
<td class="alt1"><img src="statistic/images/misc/php.gif" alt="$vbphrase[vbstatistic_infos_data_dec]" width="32" height="32" border="0" /></td>
<td class="alt1">$vbphrase[vbstatistic_php_version]</td>
<td class="alt1"><if condition="$bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7">$phpversion<else /><strong>Admin only!</strong></if></td>
</tr>
<tr>
<td class="alt2"><img src="statistic/images/misc/sql.gif" alt="$vbphrase[vbstatistic_infos_data_dec]" width="32" height="32" border="0" /></td>
<td class="alt2">$vbphrase[vbstatistic_sql_version]</td>
<td class="alt2"><if condition="$bbuserinfo[usergroupid]==5 OR $bbuserinfo[usergroupid]==6 OR $bbuserinfo[usergroupid]==7">$mysqlversion<else /><strong>Admin only!</strong></if></td>
Just take out the 5 and 6 conditions if you dion't want to show to mods and supermods.