Historia paginae "Modulus:Error"

Ad seligendas differentias nota diversarum redactionum bullas et agi iube!
Legenda: (nov) = differentiam monstrabit inter hanc et novissimam redactionem, (prox) = differentiam monstrabit inter hanc et superiorem redactionem, (m) = recensio minor.

2 Aprilis 2023

  • novprox 23:4723:47, 2 Aprilis 2023 2601:18e:c081:2ff0:e597:43d3:e269:ca6a disputatio 1 129 octeti +1 129 Paginam instituit, scribens '-- This module implements {{error}}. local p = {} local function _error(args) local tag = mw.ustring.lower(tostring(args.tag)) -- Work out what html tag we should use. if not (tag == 'p' or tag == 'span' or tag == 'div') then tag = 'strong' end -- Generate the html. return tostring(mw.html.create(tag) :addClass('error') :wikitext(tostring(args.message or args[1] or error('no message specified', 2))) ) end...'