1. template::head::get_footer_html didn't return the html2. template::head::get_[header/footer]_html renamed to template::get_[header/footer]_html because a. makes sense b. the "add" procs were in the right namespace so now it's consistent3. modifed blank-master to reflect #2
Fixed prioritization of CSS. media=all is first.Changed so unspecificed media goes to the end. For CSS the default isall so media should always have a value.
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.