# HG changeset patch # User Kim Alvefur # Date 1534657286 -7200 # Node ID a476d80761cddd59fa3028a02a32b03a1e5ea8fd # Parent 68e96dd437bb8ddd13f65ed28e2fb3338e32fb77 mod_pubsub: Fix boolean value in form diff -r 68e96dd437bb -r a476d80761cd plugins/mod_pubsub/pubsub.lib.lua --- 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"; };