summaryrefslogtreecommitdiffstats
path: root/weblog-model.lua
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-10-08 16:40:58 +0000
committerTed Trask <ttrask01@yahoo.com>2009-10-08 16:40:58 +0000
commitec988ea69c7391292777cacdc66f670b513d99f4 (patch)
tree896f8542744b05befaeea4f3047f801f8084fc04 /weblog-model.lua
parent878989065d9e92ab74ad310eca886323178d44f0 (diff)
downloadacf-weblog-8eed894129053e8a99059c6914ecc0ff98e651fa.tar.bz2
acf-weblog-8eed894129053e8a99059c6914ecc0ff98e651fa.tar.xz
Fixed bug with adhoc query, display results in a table, example descriptions, bumped to 0.4.7v0.4.7
Diffstat (limited to 'weblog-model.lua')
-rw-r--r--weblog-model.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/weblog-model.lua b/weblog-model.lua
index c4d5080..6cd66f5 100644
--- a/weblog-model.lua
+++ b/weblog-model.lua
@@ -1265,8 +1265,8 @@ function adhocquery(query)
result[#result+1] = {}
for name,val in pairs(row) do
result[#result][name] = val
- row = cur:fetch (row, "a")
end
+ row = cur:fetch (row, "a")
end
-- close everything
cur:close()