# HG changeset patch # User Matthew Wild # Date 1246653870 -3600 # Node ID af4b918e34323c88966218fa3bd78b41af4a34b5 # Parent 9f2b6e2bc49819a1ce06aaa718ef17473155598d mod_presence: Declare t_insert, fixes a potential traceback diff -r 9f2b6e2bc498 -r af4b918e3432 plugins/mod_presence.lua --- a/plugins/mod_presence.lua Fri Jul 03 21:37:09 2009 +0100 +++ b/plugins/mod_presence.lua Fri Jul 03 21:44:30 2009 +0100 @@ -10,7 +10,7 @@ local require = require; local pairs, ipairs = pairs, ipairs; -local t_concat = table.concat; +local t_concat, t_insert = table.concat, table.insert; local s_find = string.find; local tonumber = tonumber;