Jeff,
I get the following error,
Warning: Invalid argument supplied for foreach() in /srv/www/grantsva.com/public_html/TestVA/core/modules/RandomFlights/RandomFlights.php on line 30
30 is in the loop,
$flights = SchedulesData::findSchedules($params);
foreach ($flights as $row)
{
$r = rand(0, count($flights));
$airline = OperationsData::getAirlineByCode($flights[$r]->code);
if($airline->enabled == 0) continue;
if ($flights[$r]->aircraftlevel > Auth::$userinfo->ranklevel)
{
continue;
}
One thing i have done differently is the tpl files were placed in to the skins folder, would this make a difference, i will give it a go in the core templates as well?