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. Whenyear is 2008 and the this_year_for_db string is "08" tcl tries to addone to an octal number and finds an invalid octal number. In this casewe strip leading zeros from the year, add one, then format with leading0 if necessary.
Show less