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.