Skip to content

Commit

Permalink
Revert "Fixed issue: Make html email default to Y"
Browse files Browse the repository at this point in the history
This reverts commit 2584942.
  • Loading branch information
olleharstedt committed Apr 30, 2020
1 parent d0621cb commit acc12a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer/create-database.php
Expand Up @@ -613,7 +613,7 @@ function populateDatabase($oDB){
'publicstatistics' => "string(1) NOT NULL default 'N'",
'publicgraphs' => "string(1) NOT NULL default 'N'",
'listpublic' => "string(1) NOT NULL default 'N'",
'htmlemail' => "string(1) NOT NULL default 'Y'",
'htmlemail' => "string(1) NOT NULL default 'N'",
'sendconfirmation' => "string(1) NOT NULL default 'Y'",
'tokenanswerspersistence' => "string(1) NOT NULL default 'N'",
'assessments' => "string(1) NOT NULL default 'N'",
Expand Down Expand Up @@ -700,7 +700,7 @@ function populateDatabase($oDB){
'publicstatistics' => "string(1) NOT NULL DEFAULT 'N'",
'publicgraphs' => "string(1) NOT NULL DEFAULT 'N'",
'listpublic' => "string(1) NOT NULL DEFAULT 'N'",
'htmlemail' => "string(1) NOT NULL DEFAULT 'Y'",
'htmlemail' => "string(1) NOT NULL DEFAULT 'N'",
'sendconfirmation' => "string(1) NOT NULL DEFAULT 'Y'",
'tokenanswerspersistence' => "string(1) NOT NULL DEFAULT 'N'",
'assessments' => "string(1) NOT NULL DEFAULT 'N'",
Expand Down Expand Up @@ -749,7 +749,7 @@ function populateDatabase($oDB){
'publicstatistics' => 'N',
'publicgraphs' => 'N',
'listpublic' => 'N',
'htmlemail' => 'Y',
'htmlemail' => 'N',
'sendconfirmation' => 'Y',
'tokenanswerspersistence' => 'N',
'assessments' => 'N',
Expand Down

0 comments on commit acc12a4

Please sign in to comment.