diff options
author | matthew <matthew> | 2007-02-08 14:03:20 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-02-08 14:03:20 +0000 |
commit | 7415165a32dd483b66bc6a94125d4ba676b1dd21 (patch) | |
tree | 9e56a343d9bee2d63cccda301d8207a56485d13c | |
parent | 2f381305ca2645d017111a8e8656f31181e3adbf (diff) |
Doh.
-rwxr-xr-x | web/index.cgi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/index.cgi b/web/index.cgi index 27b08ff74..31f6aa4a8 100755 --- a/web/index.cgi +++ b/web/index.cgi @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org. WWW: http://www.mysociety.org # -# $Id: index.cgi,v 1.72 2007-02-08 13:59:10 matthew Exp $ +# $Id: index.cgi,v 1.73 2007-02-08 14:03:20 matthew Exp $ # TODO # Nothing is done about the update checkboxes - not stored anywhere on anything! @@ -229,7 +229,7 @@ sub submit_problem { $s->bind_param(10, $image, { pg_type => DBD::Pg::PG_BYTEA }); $s->bind_param(11, $input{council}); $s->bind_param(12, $used_map); - $s->bind_param(13, $input{anonymous} ? 't': 'f'); + $s->bind_param(13, $input{anonymous} ? 'f': 't'); $s->execute(); my %h = (); $h{title} = $input{title}; |