Not sure if it would apply for you, but around line 261 I customized the code for an obscure issue with:
Code:
if (isset($this->servicesTimeintransit[$type]) && isset($this->servicesTimeintransit[$type]["date"])) {
$eta_array = explode("-", $this->servicesTimeintransit[$type]["date"]);
$months = array (" ", "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
$eta_arrival_date = $months[(int)$eta_array[1]]." ".$eta_array[2].", ".$eta_array[0];
$_type .= ", ETA: ".$eta_arrival_date;
}
I do not have the original code off hand but you should see where the IF is added ...