Jump to content

Module:Sandbox/Toohool

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Toohool (talk | contribs) at 22:25, 20 March 2013. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local Redirect = require('Module:Redirect')

local p = {}

setmetatable(p, {
    __index = function(t, key)
        return function(frame)
            local childFrame = {args = {key}, getParent = function() return nil; end}
            return Redirect.main(childFrame)
        end
    end
})


return p