diff options
author | matthew <matthew> | 2007-04-11 10:46:29 +0000 |
---|---|---|
committer | matthew <matthew> | 2007-04-11 10:46:29 +0000 |
commit | 6465534156c2920785eaa94af125c51d6a8b6f2e (patch) | |
tree | 953a571b734cb0b3dac0364d03ac164f7e3268b1 | |
parent | 0e4473c2fc20dc3118701b4ea47474feafc5c4c1 (diff) |
Always be unchecked, they can only confirm.
-rwxr-xr-x | web-admin/index.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web-admin/index.cgi b/web-admin/index.cgi index 173891d77..343f6c306 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.24 2007-04-06 14:12:58 matthew Exp $ +# $Id: index.cgi,v 1.25 2007-04-11 10:46:29 matthew Exp $ # -my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.24 2007-04-06 14:12:58 matthew Exp $'; +my $rcsid = ''; $rcsid .= '$Id: index.cgi,v 1.25 2007-04-11 10:46:29 matthew Exp $'; use strict; @@ -271,7 +271,7 @@ sub do_council_contacts ($$) { $l->{category}), $l->{email}, $l->{confirmed} ? 'Yes' : 'No', $l->{deleted} ? 'Yes' : 'No', $l->{editor}, $l->{note}, $l->{whenedited} =~ m/^(.+)\.\d+$/, - $q->checkbox(-name => 'confirmed', -checked => $l->{confirmed}, -value => $l->{category}, -label => '') + $q->checkbox(-name => 'confirmed', -value => $l->{category}, -label => '') ])); } print $q->end_table(); |