summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index 9d1c152..bb1bff1 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -462,7 +462,7 @@ local function checkwords(logentry)
if not thisline then
break
end
- _,instcnt = string.lower(logentry.URL):gsub(thisline, " ")
+ _,instcnt = string.lower(logentry.URL):gsub(format.escapemagiccharacters(thisline), " ")
if instcnt ~= 0 then
logentry.ignoreme = true
--logme("ignoring...")
@@ -477,7 +477,7 @@ local function checkwords(logentry)
break
end
- _,instcnt = string.lower(logentry.URL):gsub(thisline, " ")
+ _,instcnt = string.lower(logentry.URL):gsub(format.escapemagiccharacters(thisline), " ")
if instcnt ~= 0 then
-- logme("instcnt = "..instcnt)
isbad=1
@@ -520,7 +520,7 @@ local function checkwords(logentry)
if not goodline then
break
end
- _,instcnt = string.lower(logentry.URL):gsub(goodline, " ")
+ _,instcnt = string.lower(logentry.URL):gsub(format.escapemagiccharacters(goodline), " ")
--if string.find(logentry.URL,goodline) then
if instcnt ~= 0 then
if wrdcnt >= instcnt then
@@ -1451,8 +1451,8 @@ function listfiles()
return retval
end
-function readfile(filename)
- return modelfunctions.getfiledetails(filename, files)
+function readfile(self, clientdata)
+ return modelfunctions.getfiledetails(clientdata.filename, files)
end
function updatefile(self, filedetails)