Good call, DanO,
Here is the fix in case others can use it:
In the csxport folder, open display_after_search.pl in a text editor.
Near the end of the file, find the line:
($sec,$min,$hours,$day,$month,$year,$wday,$yday,$isdst) = localtime($date);
Replace with:
($sec,$min,$hours,$day,$month,$year,$wday,$yday,$isdst) = gmtime($date);
------------------