mirror of
https://github.com/YunoHost/SSOwat.git
synced 2024-09-03 20:06:27 +02:00
bugfix scope
"local lustache" was causing a scope error in some setups.
This commit is contained in:
parent
60411de493
commit
d45f34eadd
1 changed files with 1 additions and 1 deletions
2
init.lua
2
init.lua
|
@ -18,10 +18,10 @@ package.path = package.path .. ";"..script_path.."?.lua"
|
||||||
local json = require "json"
|
local json = require "json"
|
||||||
local lualdap = require "lualdap"
|
local lualdap = require "lualdap"
|
||||||
local math = require "math"
|
local math = require "math"
|
||||||
local lustache = require "lustache"
|
|
||||||
local lfs = require "lfs"
|
local lfs = require "lfs"
|
||||||
local socket = require "socket"
|
local socket = require "socket"
|
||||||
local config = require "config"
|
local config = require "config"
|
||||||
|
lustache = require "lustache"
|
||||||
|
|
||||||
-- Persistent shared table
|
-- Persistent shared table
|
||||||
flashs = {}
|
flashs = {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue