Delay checking for session expiry til we actually post a comment

master
Simon McVittie 2008-11-23 17:52:30 +00:00
parent 24bfc3fdc5
commit 80e84e32bf
1 changed files with 2 additions and 1 deletions

View File

@ -264,7 +264,6 @@ sub sessioncgi ($$) { #{{{
$page));
}
IkiWiki::checksessionexpiry($session, $cgi->param('sid'));
IkiWiki::check_canedit($page . "[postcomment]", $cgi, $session);
my ($authorurl, $author) = linkuser(getcgiuser($session));
@ -354,6 +353,8 @@ sub sessioncgi ($$) { #{{{
if ($form->submitted eq POST_COMMENT && $form->validate) {
my $file = "$location._comment";
IkiWiki::checksessionexpiry($session, $cgi->param('sid'));
# FIXME: could probably do some sort of graceful retry
# on error? Would require significant unwinding though
writefile($file, $config{srcdir}, $content);