--- comics/fetch.pl.new 2013/02/25 13:48:21 1.9 +++ comics/fetch.pl.new 2013/02/26 14:24:14 1.10 @@ -9,7 +9,7 @@ use Getopt::Long; ## ## Some default values ## -my $ver = q/$Id: fetch.pl.new,v 1.9 2013/02/25 13:48:21 nick Exp $/; +my $ver = q/$Id: fetch.pl.new,v 1.10 2013/02/26 14:24:14 nick Exp $/; my $comicFile = "comics.conf"; my %comics = &readComicConfig ( $comicFile ); my %opts = &fetchOptions( ); @@ -171,7 +171,8 @@ sub writeMainIndex ($$) { ####################################################################### sub writeFooter { my ( $date ) = @_; - my $indexFile = $indexDir . "/index-" . $date->{'year2'} . $date->{'mon2'} . + my $indexFile = $indexDir . "/index-" . $days[$date->{'dow'}] . + "-" . $date->{'year2'} . $date->{'mon2'} . $date->{'day2'} . ".html"; my $sysDate = `date`; @@ -209,7 +210,8 @@ sub checkDir ($$) { ####################################################################### sub writeTitle ($$) { my ( $date ) = @_; - my $indexFile = $indexDir . "/index-" . $date->{'year2'} . $date->{'mon2'} . + my $indexFile = $indexDir . "/index-" . $days[$date->{'dow'}] . + "-" . $date->{'year2'} . $date->{'mon2'} . $date->{'day2'} . ".html"; my $today = $days[$date->{'dow'}] . " " . $date->{'mon'} . "/" . $date->{'day'} . "/" . $date->{'year'};