diff options
author | Matthew Somerville <matthew@mysociety.org> | 2016-03-29 10:31:55 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2016-03-29 11:04:17 +0100 |
commit | 28b9f1b3bb54cebbe1236a9f29539fc4544c4061 (patch) | |
tree | 6179e25bf71e906a696058e6b0c0373164f7d1b5 /templates | |
parent | 9dc22d870870eec159437df9af1d2103c8a474b3 (diff) |
Default new category creation to confirmed.
Fixes #1266.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/admin/body.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web/base/admin/body.html b/templates/web/base/admin/body.html index 84ea6840c..b46d411c2 100644 --- a/templates/web/base/admin/body.html +++ b/templates/web/base/admin/body.html @@ -162,7 +162,7 @@ </p> </div> <p> - <input type="checkbox" name="confirmed" value="1" id="confirmed"[% ' checked' IF contact.confirmed %]> + <input type="checkbox" name="confirmed" value="1" id="confirmed"[% ' checked' IF contact.confirmed OR contact.confirmed == "" %]> <label for="confirmed" class="inline">[% loc('Confirmed') %]</label> </p> |