Module:InfoboxImage: Difference between revisions
Content deleted Content added
Telesphoreo (talk | contribs) m 1 revision imported |
Telesphoreo (talk | contribs) No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 141:
return "";
end
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,5)) == "http:" then▼
return "";▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "[http:" then▼
return "";▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[[http:" then▼
return "";▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then▼
return "";▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,7)) == "[https:" then▼
return "";▼
end▼
if mw.ustring.lower(mw.ustring.sub(image,1,8)) == "[[https:" then▼
return "";▼
end
Line 227 ⟶ 208:
sizedefault = sizedefault .. "px";
end
if page ~= "" and page ~= nil then
result = result .. "|page=" .. page;
Line 276 ⟶ 257:
end
result = result .. "]]";
▲ end
▲ end
▲ end
▲ if mw.ustring.lower(mw.ustring.sub(image,1,6)) == "https:" then
▲ end
▲ end
result = image;
▲ end
return result;
|