*** emptymessage-v0i3 Sun Sep 19 17:58:14 2004
--- emptymessage Sat Jan 8 08:09:05 2005
***************
*** 22,35 ****
$message_404 = "
!
!
! 404 Not Found
!
!
! Not Found
! The requested page does not exist... Please try another URL
! Return to home page.
!
!
!;
--- 22,33 ----
$message_404 = "
!
! 404 Not Found
!
! Not Found
! The requested URL $ENV{'REQUEST_URI'} was not found on this server.
!
! $ENV{'SERVER_SOFTWARE'} Server at $ENV{'SERVER_NAME'} Port $ENV{'SERVER_PORT'}
!
!;
***************
*** 48,53 ****
my $empty = 0;
- $currentdir = "$blosxom::datadir/$currentdir";
$currentdir =~ s/\..*?$//;
$currentdir =~ s/\/$//;
--- 46,51 ----
my $empty = 0;
$currentdir =~ s/\..*?$//;
+ $currentdir = "$blosxom::datadir/$currentdir";
$currentdir =~ s/\/$//;
***************
*** 69,73 ****
if (! param('recent')) {
$blosxom::output = $message_404;
! print "Status: 404\n";
}
}
--- 67,73 ----
if (! param('recent')) {
$blosxom::output = $message_404;
! $blosxom::header->{'Status'} = '404 Not Found';
! $blosxom::header->{'Content-length'} =
! length($blosxom::output);
}
}