diff options
author | matthew <matthew> | 2009-12-22 17:01:17 +0000 |
---|---|---|
committer | matthew <matthew> | 2009-12-22 17:01:17 +0000 |
commit | 503297efaa721dd1ca9078927bd89f6afee4c8d3 (patch) | |
tree | 7094cc535af439a77a2c5fde7f794e43eb38f423 /web-admin/index.cgi | |
parent | ad432c6d6e5ae88f1000dbb59e175c5b7a7f6c23 (diff) |
Form missing a token.
Diffstat (limited to 'web-admin/index.cgi')
-rwxr-xr-x | web-admin/index.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/web-admin/index.cgi b/web-admin/index.cgi index 14d086bbf..0b929f65b 100755 --- a/web-admin/index.cgi +++ b/web-admin/index.cgi @@ -7,10 +7,10 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: index.cgi,v 1.81 2009-12-16 17:05:37 louise Exp $ +# $Id: index.cgi,v 1.82 2009-12-22 17:01:17 matthew Exp $ # -my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.81 2009-12-16 17:05:37 louise Exp $'; +my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.82 2009-12-22 17:01:17 matthew Exp $'; use strict; @@ -407,6 +407,7 @@ sub admin_council_edit ($$$) { $q->param('page', 'councilcontacts'); $q->param('posted', 'new'); print $q->strong("Category: ") . $bci_data->{category}; + print $q->hidden('token', get_token($q)), print $q->hidden("category"); print $q->strong(" Email: "); print $q->textfield(-name => "email", -size => 30) . " "; |