diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-18 11:14:16 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-18 11:14:16 +0100 |
commit | e8d4802c4d0c57b7c35b1aa0c77f111af1116d4c (patch) | |
tree | a3a9a8ff5de3a20a633b079bd5e5e81eaaad39af /plugins/sql.lib.lua | |
parent | 8a95381b4095ec24967d5dc399330be9fa7e11c7 (diff) | |
parent | 0dd53a7f8387e0282d1185fc1986c6e5490dad5b (diff) | |
download | prosody-e8d4802c4d0c57b7c35b1aa0c77f111af1116d4c.tar.gz prosody-e8d4802c4d0c57b7c35b1aa0c77f111af1116d4c.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/sql.lib.lua')
-rw-r--r-- | plugins/sql.lib.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/sql.lib.lua b/plugins/sql.lib.lua new file mode 100644 index 00000000..005ee45d --- /dev/null +++ b/plugins/sql.lib.lua @@ -0,0 +1,9 @@ +local cache = module:shared("/*/sql.lib/util.sql"); + +if not cache._M then + prosody.unlock_globals(); + cache._M = require "util.sql"; + prosody.lock_globals(); +end + +return cache._M; |