Editing Module:User:Kai/sandboxGive feedback
The edit can be undone.
Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
| Latest revision | Your text | ||
| Line 1: | Line 1: | ||
local p = {} | |||
function p.view(frame) | |||
local b = mw.ext.bucket('feedback') | |||
local meta = getmetatable(b) | |||
local results = {} | |||
-- Let's test calling select directly without colon or inspect error message | |||
local success, err = pcall(function() | |||
b:select('page') | |||
end) | |||
return "Call error: " .. tostring(err) | |||
end | |||
return p | |||