mirror of
https://github.com/SaraSmiseth/prosody.git
synced 2025-04-19 16:01:14 +00:00
fix arrays 2
This commit is contained in:
parent
6125c8a270
commit
d2065b426b
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
function splitString (input, sep)
|
local splitString = function(input, sep)
|
||||||
local t={}
|
local t={}
|
||||||
for str in string.gmatch(input, "([^"..sep.."]+)") do
|
for str in string.gmatch(input, "([^"..sep.."]+)") do
|
||||||
table.insert(t, str)
|
table.insert(t, str)
|
||||||
|
|
Loading…
Reference in a new issue