Content deleted Content added
No edit summary |
No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 104:
title = mw.title.new(title)
local exst, redir
if title and title.exists then
exst = 1
else
exst = 0
end
if title and title.isRedirect then
redir = 1
else
Line 115:
end
local str = ""
str = str .. (title and title.text or '<span class="error">nil</span>')
if exst == 1 then
str = str .. " exists and"
|