Module:InfoboxImage: Difference between revisions
Content deleted Content added
Telesphoreo (talk | contribs) No edit summary |
Telesphoreo (talk | contribs) No edit summary |
||
Line 208:
sizedefault = sizedefault .. "px";
end
result = "[[File:" .. image;▼
if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then▼
result = image;▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "[http:" then▼
result = image;▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[[http:" then▼
result = image;▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then▼
result = image;▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[https:" then▼
result = image;▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,8)) == "[[https:" then▼
result = image;▼
end▼
if page ~= "" and page ~= nil then
result = result .. "|page=" .. page;
Line 282 ⟶ 257:
end
result = result .. "]]";
▲ result = image;
▲ end
▲ result = image;
▲ end
▲ result = image;
▲ end
▲ if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then
▲ result = image;
▲ end
▲ result = image;
▲ end
▲ result = image;
▲ end
return result;
|