go into core/modules/pilots and open pilots.php
// Get all of our hubs, and list pilots by hub
$allhubs = OperationsData::GetAllHubs();
if(!$allhubs) $allhubs = array();
foreach($allhubs as $hub)
{
$this->set('title', $hub->name);
$this->set('icao', $hub->icao);
$this->set('allpilots', PilotData::findPilots(array('p.hub'=>$hub->icao)));
$this->render('MY_pilots_list.tpl');<<<<i CHANGED THIS
Make your own pilots_list.tpl, make sure to change the name and drop in your skin folder...I have done this and it works fine....just have to change every update....