| [Date Prev] [Date Next] | [Thread Prev] [Thread Next] | [Date Index] [Thread Index] |
Re: [nocol-users] Y2K bug fix for genweb.pl (4.2.1) Solaris
|
> Probably old news, but I found a minor Y2K bug in genweb.pl:
>
> $today = "$z1[$mon]/$z1[$mday]/19$year $hour:$z1[$min]";
>
> OK? to change it to:
>
> $y2k = 1900 + $year;
> $today = "$z1[$mon]/$z1[$mday]/$y2k $hour:$z1[$min]";
>
Thanks for catching that. $year is never used again, so
$year += 1900;
$today = "$z1[$mon]/$z1[$mday]/$year $hour:$z1[$min]";
works just as well and saves a variable. (I'm trying to save all the
variables I can for use in my retirement.)
--
_______________________________________________________________________
Rick Beebe (203) 785-6416
Manager, Systems & Network Engineering FAX: (203) 785-3978
ITS-Med Client & Technology Services Richard.Beebe@yale.edu
Yale University School of Medicine
P.O. Box 208078, New Haven, CT 06520-8078
_______________________________________________________________________
|