view plugins/sql.lib.lua @ 6479:d016437e01bf

plugins/muc/mod_muc: Add 'local_only' flag to mod_muc, so rooms don't get restored on shutdown
author daurnimator <quae@daurnimator.com>
date Fri, 17 Oct 2014 16:35:46 -0400
parents 9916f0a2d178
children
line wrap: on
line source

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;