summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/comments.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2008-12-17 14:26:08 -0500
committerJoey Hess <joey@gnu.kitenet.net>2008-12-17 14:26:08 -0500
commit985b229be632126f376aaad7bd354d0d7d014464 (patch)
tree1fdc8e45853dab0bc98d0c5e130902ec50150b92 /IkiWiki/Plugin/comments.pm
parentfdd994fb7365308bde162b72b280512f2db6a339 (diff)
checksessionexpiry: rework
This function as factored out was a bit confusing, I think this makes more sense.
Diffstat (limited to 'IkiWiki/Plugin/comments.pm')
-rw-r--r--IkiWiki/Plugin/comments.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm
index 1eb256da9..b8748a1d6 100644
--- a/IkiWiki/Plugin/comments.pm
+++ b/IkiWiki/Plugin/comments.pm
@@ -468,7 +468,7 @@ sub sessioncgi ($$) { #{{{
if ($form->submitted eq POST_COMMENT && $form->validate) {
my $file = "$location._comment";
- IkiWiki::checksessionexpiry($session, $cgi->param('sid'));
+ IkiWiki::checksessionexpiry($cgi, $session);
# FIXME: could probably do some sort of graceful retry
# on error? Would require significant unwinding though