Jump to content

Module:Sandbox/Kephir: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
getTitle test
blah
Line 4: Line 4:
return {
return {
pagename = function (frame)
pagename = function (frame)
return table.concat(frame:getParent():getTitle())
return frame:getParent():getTitle()
end;
end;
}
}

Revision as of 18:19, 7 January 2014

-- [[User:Kephir]]'s Scribunto sandbox
-- do not expect anything to stay here in place

return {
	pagename = function (frame)
		return frame:getParent():getTitle()
	end;
}