Module:Redirect hatnote: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
m (Tweaked last edit: didn't mean to catch pages where there's termination but no early termination)
(Removed early termination behaviour when first use is "other uses", and the tracking for it)
Line 131: Line 131:
text[#text + 1] = formatUseTable(data[1] or {}, true, redirect)
text[#text + 1] = formatUseTable(data[1] or {}, true, redirect)
if data[1] and data[1].use then
if data[1] and data[1].use then
if data[1].use ~= 'other uses' then
for i = 2, #data do
text[#text + 1] = formatUseTable(data[i] or {}, false, redirect)
for i = 2, #data do
text[#text + 1] = formatUseTable(data[i] or {}, false, redirect)
end
elseif #data > 1 then
text[#text] = text[#text] .. '[[Category:Hatnote templates using unusual parameters]]'
end
end
end
end