tripListAdmin.php does not always assign more than one
station. The second station request fails and trying a
second time does not help.
Also, attempts to change the scheduled times using
triplistAdmin fails.
The current workaround, for both problems, is to type
SQL directly into the mysql client. Don't try this at
home, Kids, unless you do the following:
create table tmp select * from ShiftTable;
If you blow ShiftTable away with a bad "update"
statement you can recover by typing:
drop table ShiftTable;
create table ShiftTable select * from tmp;