Changeset

9211:a476d80761cd

mod_pubsub: Fix boolean value in form
author Kim Alvefur <zash@zash.se>
date Sun, 19 Aug 2018 07:41:26 +0200
parents 9210:68e96dd437bb
children 9212:127af0795e93
files plugins/mod_pubsub/pubsub.lib.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_pubsub/pubsub.lib.lua	Sun Aug 19 07:39:49 2018 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Sun Aug 19 07:41:26 2018 +0200
@@ -100,7 +100,7 @@
 	};
 	{
 		type = "boolean";
-		value = "true";
+		value = true;
 		label = "Whether to deliver event notifications";
 		name = "pubsub#deliver_notifications";
 	};