From 26ac09f52a7faf945a2983ffea62b023c397c103 Mon Sep 17 00:00:00 2001 From: Steven Marsden Date: Mon, 15 Oct 2018 15:20:49 -0400 Subject: [PATCH] Prevent error from incomplete role --- install.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sql b/install.sql index 7beb8f2..8381c7b 100644 --- a/install.sql +++ b/install.sql @@ -420,7 +420,7 @@ CREATE TABLE `users` ( INSERT INTO admin values (1, @username); INSERT INTO users values (1, @username, @name, 1); -INSERT INTO roles values (1, 'Example role', 8, 21,'',0,1,'','rula_template.php'); +INSERT INTO roles values (1, 'Example role', 8, 21,'',0,1,'{"conf_email":"awaiting_moderation.php","policy_url":"","sidebar_text":""}','rula_template.php'); INSERT INTO user_roles values (1,1);