Originally Posted by
malgudi
Some redesign eh?
.bomb shows the
ADD ECONOMY PLUS option for an upcoming F itinerary!

I fail to see the point since it also shows this option for my 4 currently booked itineraries, and I am a 1K with guaranteed E+ seating... The option is there clearly as a sales pitch to all, done quickly by just reprogramming the label
display_option = TRUE for all cases
rather than spending the time to do a more elaborate conditional programming:
if (member==TRUE) then switch(elite_level)
{
case GM: display_option = TRUE;
break;
case 1P:
case 2P:
case 1K:
display_option = FALSE;
break;
default:
break;
}
Not elegant how they did it but expedient...