Content deleted Content added
fix |
add tracking categories for listas |
||
Line 813:
if args.listas then
frame:preprocess('{{DEFAULTSORT:' .. args.listas .. '}}')
local success, shell_listas_value = require('Module:Template parameter value').getParameter(
title.prefixedText,
cfg.banner_shell.redirects,
'listas',
{ignore_subtemplates = true, ignore_blank = true}
)
if success then
if args.listas==shell_listas_value then
add_category('WikiProject banners with redundant listas value')
else
add_category('WikiProject banners with conflicting listas value')
end
end
end
local tstyle = frame:extensionTag
frame:extensionTag ('templatestyles', '', {src = 'Module:WikiProject banner' .. (sandbox or '') .. '/styles.css'})
return warning .. tstyle .. tostring(banner) .. categories_formatted, note_count, #taskforce_output, assessment_link
|