summaryrefslogtreecommitdiffstats
path: root/acf/persistence/backends/json.lua
diff options
context:
space:
mode:
Diffstat (limited to 'acf/persistence/backends/json.lua')
-rw-r--r--acf/persistence/backends/json.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/acf/persistence/backends/json.lua b/acf/persistence/backends/json.lua
index 7300ce9..6500d13 100644
--- a/acf/persistence/backends/json.lua
+++ b/acf/persistence/backends/json.lua
@@ -1,5 +1,5 @@
--[[
-Copyright (c) 2012 Kaarle Ritvanen
+Copyright (c) 2012-2013 Kaarle Ritvanen
See LICENSE file for license details
--]]
@@ -34,7 +34,7 @@ function backend:split_path(path)
local res
while #fpath > 0 do
- local fp = pth.join('/', unpack(fpath))
+ local fp = pth.mjoin('/', unpack(fpath))
if self.cache[fp] then return fp, jpath end
table.insert(jpath, 1, fpath[#fpath])
table.remove(fpath)
@@ -43,7 +43,7 @@ function backend:split_path(path)
fpath = '/'
while true do
- fpath = pth.join(fpath, jpath[1])
+ fpath = pth.mjoin(fpath, jpath[1])
table.remove(jpath, 1)
local attrs = lfs.attributes(fpath)