It's a long story on the upgrade - I don't mind upgrading, but I'm not the only user on this one. In any case, I did find the spot in the code where this can be fixed. In
/lib/MT/template/Context.pm, change this:
CODE
## Archives
{...
Daily => {
...
section_title => sub {
my $start =
start_end_day($_[1]->created_on, $_[0]->stash('blog'));
_hdlr_date($_[0], { ts => $start, 'format' => "%B %e, %Y" });
...
Weekly => {
...
_hdlr_date($_[0], { ts => $start, 'format' => "%B %e, %Y" }) .
' - ' .
_hdlr_date($_[0], { ts => $end, 'format' => "%B %e, %Y" });
},
...
To this:
CODE
## Archives
{...
Daily => {
...
section_title => sub {
my $start =
start_end_day($_[1]->created_on, $_[0]->stash('blog'));
_hdlr_date($_[0], { ts => $start, 'format' => "%B %d, %Y" });
...
Weekly => {
...
_hdlr_date($_[0], { ts => $start, 'format' => "%B %d, %Y" }) .
' - ' .
_hdlr_date($_[0], { ts => $end, 'format' => "%B %d, %Y" });
},
...
I'm running MT under IIS 3 on WinNT Server.