Module:High-use: Difference between revisions

From the Croc Wiki, the Croc encyclopedia
Jump to navigationJump to search
Content added Content deleted
(update link)
(added bot comment sandbox changes based on talk page discussion)
Line 55: Line 55:


function p.text(frame, count)
function p.text(frame, count)
local bot_text = "\n\n----\nTransclusion count updated by [[User:Ahechtbot|Ahechtbot]]."
if frame.args["nobot"] == true then
bot_text = ""
end
if count == nil then count = _fetch(frame) end
if count == nil then count = _fetch(frame) end
local return_value = {}
local return_value = {}
Line 98: Line 103:
end
end
return table.concat({used_on_text, sandbox_text, discussion_text, " before implementing them."})
return table.concat({used_on_text, sandbox_text, discussion_text, " before implementing them.", bot_text})
end
end