summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2011-09-05 15:29:14 +0000
committerTed Trask <ttrask01@yahoo.com>2011-09-05 15:29:14 +0000
commit8a3706685b92a9d9b78972b2b573aaf13ee948f7 (patch)
treee267437776103531525d127e55a02b6d9e59b026
parentbc0662df503e688b16de3e5ba5069e68508bcf24 (diff)
downloadacf-weblog-8a3706685b92a9d9b78972b2b573aaf13ee948f7.tar.bz2
acf-weblog-8a3706685b92a9d9b78972b2b573aaf13ee948f7.tar.xz
Fixed typo
-rw-r--r--weblog-viewweblog-html.lsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/weblog-viewweblog-html.lsp b/weblog-viewweblog-html.lsp
index 5aaabea..758d3bc 100644
--- a/weblog-viewweblog-html.lsp
+++ b/weblog-viewweblog-html.lsp
@@ -17,8 +17,8 @@ function string_highlight(txtvalue, searchval, fcolour, bcolour)
sStart = string.find(string.lower(txtvalue),string.lower(searchval))
if sStart ~= nil then
sEnd = sStart + string.len(searchval)
- txtvalue = string.insert(txtvalue,"</font>", sEnd)
- txtvalue = string.insert(txtvalue,"<font style='color:"..fcolour.."; background-color:"..bcolour..";'>", sStart)
+ txtvalue = string_insert(txtvalue,"</font>", sEnd)
+ txtvalue = string_insert(txtvalue,"<font style='color:"..fcolour.."; background-color:"..bcolour..";'>", sStart)
end
end