# HG changeset patch # User Waqas Hussain # Date 1323683592 -18000 # Node ID b34eee3712c34d1cc197453bd3eab4570195d97b # Parent 53ce21286b8c4b936c1643450832338060314b8e mod_watchregistrations: Fixed an undefined global access (thanks Medics). diff -r 53ce21286b8c -r b34eee3712c3 plugins/mod_watchregistrations.lua --- a/plugins/mod_watchregistrations.lua Tue Jan 17 21:10:16 2012 +0000 +++ b/plugins/mod_watchregistrations.lua Mon Dec 12 14:53:12 2011 +0500 @@ -18,7 +18,7 @@ module:log("debug", "Notifying of new registration"); local message = st.message{ type = "chat", from = host } :tag("body") - :text(registration_alert:gsub("%$(%w+)", function (v) + :text(registration_notification:gsub("%$(%w+)", function (v) return user[v] or user.session and user.session[v] or nil; end)); for _, jid in ipairs(registration_watchers) do