File

plugins/sql.lib.lua @ 8589:4e475ef4b569

mod_admin_telnet: Include the default path property in URL calculation (fixes #1099)
author Kim Alvefur <zash@zash.se>
date Sat, 10 Mar 2018 20:47:34 +0100
parent 5494:9916f0a2d178
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;