Content deleted Content added
Jackmcbarn (talk | contribs) handle new method of calling |
Jackmcbarn (talk | contribs) return the new object |
||
Line 11:
local function makeWikilink(page, display)
if display then
return mw.ustring.format('[[%s|%s]]', page, display)else
return mw.ustring.format('[[%s]]', page)
end
Line 563 ⟶ 562:
obj.blurb = blurb.new(obj.titles, obj.boxProtectionLevel)
obj.makeMessageBox = makeMessageBox
return setmetatable(obj, {
__index = function(_, k)
if box[k] ~= nil then
|