diff options
author | Kim Alvefur <zash@zash.se> | 2015-02-21 10:36:37 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-02-21 10:36:37 +0100 |
commit | eaa823a5971bfd2e9cb38dd8f30fefee2da95c2e (patch) | |
tree | f7609b77dfead0a8d6994597c5799196676080bd /util/template.lua | |
parent | b49513cdeb2bb123625fb87f53a04d42b7eb6fb2 (diff) | |
download | prosody-eaa823a5971bfd2e9cb38dd8f30fefee2da95c2e.tar.gz prosody-eaa823a5971bfd2e9cb38dd8f30fefee2da95c2e.zip |
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
Diffstat (limited to 'util/template.lua')
-rw-r--r-- | util/template.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/template.lua b/util/template.lua index 66d4fca7..a26dd7ca 100644 --- a/util/template.lua +++ b/util/template.lua @@ -9,7 +9,7 @@ local debug = debug; local t_remove = table.remove; local parse_xml = require "util.xml".parse; -module("template") +local _ENV = nil; local function trim_xml(stanza) for i=#stanza,1,-1 do |