<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ur">
	<id>https://ur.wikivahdat.com/w/index.php?action=history&amp;feed=atom&amp;title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84%3AUrldecode</id>
	<title>ماڈیول:Urldecode - تاریخچہ ترمیم</title>
	<link rel="self" type="application/atom+xml" href="https://ur.wikivahdat.com/w/index.php?action=history&amp;feed=atom&amp;title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84%3AUrldecode"/>
	<link rel="alternate" type="text/html" href="https://ur.wikivahdat.com/w/index.php?title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&amp;action=history"/>
	<updated>2026-04-19T13:52:45Z</updated>
	<subtitle>ویکی پر اِس صفحہ کا تاریخچۂ نظرثانی</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://ur.wikivahdat.com/w/index.php?title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&amp;diff=1962&amp;oldid=prev</id>
		<title>Wikivahdat: 1 نسخہ درآمد کیا گیا</title>
		<link rel="alternate" type="text/html" href="https://ur.wikivahdat.com/w/index.php?title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&amp;diff=1962&amp;oldid=prev"/>
		<updated>2022-12-04T05:57:33Z</updated>

		<summary type="html">&lt;p&gt;1 نسخہ درآمد کیا گیا&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ur&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;→ پرانا نسخہ&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;نسخہ بمطابق 09:27، 4 دسمبر 2022ء&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ur&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(کوئی فرق نہیں)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Wikivahdat</name></author>
	</entry>
	<entry>
		<id>https://ur.wikivahdat.com/w/index.php?title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&amp;diff=1961&amp;oldid=prev</id>
		<title>ur&gt;Wikivahdat: Protected &quot;Module:Urldecode&quot;: High-risk template or module: 3861 transclusions (more info) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite))</title>
		<link rel="alternate" type="text/html" href="https://ur.wikivahdat.com/w/index.php?title=%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&amp;diff=1961&amp;oldid=prev"/>
		<updated>2022-01-01T17:59:58Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/wiki/%D9%85%D8%A7%DA%88%DB%8C%D9%88%D9%84:Urldecode&quot; title=&quot;ماڈیول:Urldecode&quot;&gt;Module:Urldecode&lt;/a&gt;&amp;quot;: &lt;a href=&quot;https://en.wikipedia.org/wiki/High-risk_templates&quot; class=&quot;extiw&quot; title=&quot;wikipedia:High-risk templates&quot;&gt;High-risk template or module&lt;/a&gt;: 3861 transclusions (&lt;a href=&quot;/w/index.php?title=%D8%B5%D8%A7%D8%B1%D9%81:MusikBot_II/TemplateProtector&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;صارف:MusikBot II/TemplateProtector (صفحہ موجود نہیں)&quot;&gt;more info&lt;/a&gt;) ([Edit=Require extended confirmed access] (indefinite) [Move=Require extended confirmed access] (indefinite))&lt;/p&gt;
&lt;p&gt;&lt;b&gt;نیا صفحہ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.urlDecode( frame )&lt;br /&gt;
	local enctype = frame.args[2]&lt;br /&gt;
	local ret = nil;&lt;br /&gt;
	if (frame.args[2] ~= nil) then&lt;br /&gt;
		enctype = mw.ustring.upper(enctype)&lt;br /&gt;
		if ((enctype == &amp;quot;QUERY&amp;quot;) or (enctype == &amp;quot;PATH&amp;quot;) or (enctype == &amp;quot;WIKI&amp;quot;)) then&lt;br /&gt;
			ret = mw.uri.decode(frame.args[1],frame.args[2])&lt;br /&gt;
		end&lt;br /&gt;
	else&lt;br /&gt;
		ret = mw.uri.decode(frame.args[1])&lt;br /&gt;
	end&lt;br /&gt;
	ret = string.gsub(ret, &amp;quot;{&amp;quot;, &amp;quot;&amp;amp;#x7B;&amp;quot;)&lt;br /&gt;
	ret = string.gsub(ret, &amp;quot;}&amp;quot;, &amp;quot;&amp;amp;#x7D;&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
	return ret&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>ur&gt;Wikivahdat</name></author>
	</entry>
</feed>