Software /
code /
prosody-modules
Changeset
1313:440d7276ca62
mod_mam_muc: Rename variable
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 20 Feb 2014 20:22:35 +0100 |
parents | 1312:a48cf3ccdf9c |
children | 1314:cc9831033f5d |
files | mod_mam_muc/mod_mam_muc.lua |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_mam_muc/mod_mam_muc.lua Thu Feb 20 20:16:15 2014 +0100 +++ b/mod_mam_muc/mod_mam_muc.lua Thu Feb 20 20:22:35 2014 +0100 @@ -1,4 +1,4 @@ --- XEP-0313: Message Archive Management for Prosody +-- XEP-0313: Message Archive Management for Prosody MUC -- Copyright (C) 2011-2013 Kim Alvefur -- -- This file is MIT/X11 licensed. @@ -6,7 +6,7 @@ local xmlns_mam = "urn:xmpp:mam:tmp"; local xmlns_delay = "urn:xmpp:delay"; local xmlns_forward = "urn:xmpp:forward:0"; -local muc_form_config_option = "muc#roomconfig_enablelogging" +local muc_form_enable_logging = "muc#roomconfig_enablelogging" local st = require "util.stanza"; local rsm = module:require "mod_mam/rsm"; @@ -51,7 +51,7 @@ end table.insert(form, { - name = muc_form_config_option, + name = muc_form_enable_logging, type = "boolean", label = "Enable Logging?", value = logging_enabled, @@ -61,11 +61,11 @@ module:hook("muc-config-submitted", function(event) local room, fields, changed = event.room, event.fields, event.changed; - local new = fields[muc_form_config_option]; + local new = fields[muc_form_enable_logging]; if new ~= room._data.logging then room._data.logging = new; if type(changed) == "table" then - changed[muc_form_config_option] = true; + changed[muc_form_enable_logging] = true; else event.changed = true; end