diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-01-13 00:05:07 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-01-13 00:05:07 +0000 |
commit | dcb6421a9bdf277e48b46783154dd8348ebc6770 (patch) | |
tree | 6f3140152da9a9c5df2a3845302d8c096508099e /plugins/muc/mod_muc.lua | |
parent | c1e075ec38ec71a58eae6e34c08c0cc50269ba14 (diff) | |
download | prosody-dcb6421a9bdf277e48b46783154dd8348ebc6770.tar.gz prosody-dcb6421a9bdf277e48b46783154dd8348ebc6770.zip |
mod_muc: Remove unused history_length declaration
Diffstat (limited to 'plugins/muc/mod_muc.lua')
-rw-r--r-- | plugins/muc/mod_muc.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 856f3cba..d23e2474 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -16,7 +16,6 @@ local muc_name = module:get_option("name"); if type(muc_name) ~= "string" then muc_name = "Prosody Chatrooms"; end local restrict_room_creation = module:get_option("restrict_room_creation"); if restrict_room_creation and restrict_room_creation ~= true then restrict_room_creation = nil; end -local history_length = 20; local muc_new_room = module:require "muc".new_room; local register_component = require "core.componentmanager".register_component; |