dsgvo: set default of commentform checkbox to false (#77)

This commit is contained in:
onli 2018-05-15 18:33:58 +02:00 committed by GitHub
parent aabb1ce406
commit c45ba5f4ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,4 @@
1.1.0: Set default value of commentform checkbox to false
1.0.7: Properly quit once the CSV dump is sent, and not embed this in HTML
1.0.6: Typos, German translation, frontend markup fix
1.0.5: Added ability to export and/or remove comments made by users to comply with the Auskunftsgesuch

View file

@ -23,7 +23,7 @@ class serendipity_event_dsgvo_gdpr extends serendipity_event
$propbag->add('description', PLUGIN_EVENT_DSGVO_GDPR_DESC);
$propbag->add('stackable', false);
$propbag->add('author', 'Serendipity Team');
$propbag->add('version', '1.0.7');
$propbag->add('version', '1.1.0');
$propbag->add('requirements', array(
'serendipity' => '2.0',
'smarty' => '2.6.7',
@ -88,7 +88,7 @@ class serendipity_event_dsgvo_gdpr extends serendipity_event
$propbag->add('type','boolean');
$propbag->add('name', PLUGIN_EVENT_DSGVO_GDPR_COMMENTFORM_CHECKBOX);
$propbag->add('description', PLUGIN_EVENT_DSGVO_GDPR_COMMENTFORM_CHECKBOX_DESC);
$propbag->add('default', 'true');
$propbag->add('default', 'false');
break;
case 'anonymizeIp':