1
0
mirror of https://github.com/ShaYmez/xlxd.git synced 2024-12-23 01:55:49 -05:00
v 2.3.5
This commit is contained in:
LX1IQ 2017-03-08 14:27:04 +01:00 committed by GitHub
parent 0eb6926a7b
commit f4394c41fe
2 changed files with 2 additions and 1 deletions

View File

@ -33,6 +33,7 @@ $PageOptions['PeerPage']['LimitTo'] = 99; // Numb
$PageOptions['PeerPage']['IPModus'] = 'ShowFullIP'; // See possible options above $PageOptions['PeerPage']['IPModus'] = 'ShowFullIP'; // See possible options above
$PageOptions['PeerPage']['MasqueradeCharacter'] = '*'; // Character used for masquerade $PageOptions['PeerPage']['MasqueradeCharacter'] = '*'; // Character used for masquerade
$PageOptions['LastHeardPage']['LimitTo'] = 39; // Number of stations to show
$PageOptions['ModuleNames'] = array(); // Module nomination $PageOptions['ModuleNames'] = array(); // Module nomination
$PageOptions['ModuleNames']['A'] = 'Int.'; $PageOptions['ModuleNames']['A'] = 'Int.';

View File

@ -151,7 +151,7 @@ for ($i=0;$i<$Reflector->StationCount();$i++) {
<td align="center" width="30">'.$Reflector->Stations[$i]->GetModule().'</td> <td align="center" width="30">'.$Reflector->Stations[$i]->GetModule().'</td>
</tr>'; </tr>';
} }
if ($i == 39) { $i = $Reflector->StationCount()+1; } if ($i == $PageOptions['LastHeardPage']['LimitTo']) { $i = $Reflector->StationCount()+1; }
} }
?> ?>