Anonymous

Module:Shared: Difference between revisions

From Melvor Idle
no edit summary
(fixPagename: Include & / %26)
No edit summary
(One intermediate revision by the same user not shown)
Line 373: Line 373:
result = string.gsub(result, "%%27", "'")
result = string.gsub(result, "%%27", "'")
result = string.gsub(result, "'", "'")
result = string.gsub(result, "'", "'")
result = string.gsub(result, '%%26', "&")
result = string.gsub(result, "&", "&")
return result
return result
end
end