From 3928448aca53a7d775a3956db816bc1dea7afe3e Mon Sep 17 00:00:00 2001 From: Ted Trask Date: Sat, 20 Apr 2013 19:11:37 +0000 Subject: Fixed bug where user words not properly escaped --- weblog-model.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'weblog-model.lua') 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) -- cgit v1.2.3