Jump to content

Module:Urldecode: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Initial version copied from https://en.wikinews.org/w/index.php?title=Module:Urldecode. See that page's history for attribution.
(No difference)

Revision as of 13:44, 30 June 2020

local p = {}

function p.urlDecode( frame )
	local enctype = frame.args[2]
	if (frame.args[2] ~= nil) then
		enctype = mw.ustring.upper(enctype)
		if ((enctype == "QUERY") or (enctype == "PATH") or (enctype == "WIKI")) then
			return (mw.uri.decode(frame.args[1],frame.args[2]))
		end
	end
	return (mw.uri.decode(frame.args[1]))
end

return p