daveb
committed
on 07 Jan 08
Fix y2k08 bug in ecommerce. The year was formatted with leading 0. When
year is 2008 and the this_year_for_db string is "08" tcl tries to ad… Show more
Fix y2k08 bug in ecommerce. The year was formatted with leading 0. When

year is 2008 and the this_year_for_db string is "08" tcl tries to add

one to an octal number and finds an invalid octal number. In this case

we strip leading zeros from the year, add one, then format with leading

0 if necessary.

Show less