# HG changeset patch # User Matthew Wild # Date 1263341107 0 # Node ID b4628c4d9ee20d4f876bb5cea033709160c05dec # Parent 102c81e378781ba0e1d61f982f2cfbb5637c6e23 mod_muc: Remove unused history_length declaration diff -r 102c81e37878 -r b4628c4d9ee2 plugins/muc/mod_muc.lua --- a/plugins/muc/mod_muc.lua Wed Jan 13 00:04:38 2010 +0000 +++ b/plugins/muc/mod_muc.lua Wed Jan 13 00:05:07 2010 +0000 @@ -16,7 +16,6 @@ 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;