Prijeđi na sadržaj

Historija: Modul:Error

Razlika pomoću verzija: označite kružiće pored dviju verzija za usporedbu i pritisnite enter ili dugme na dnu.
Objašnjenje: (tren) = usporedba s aktualnom verzijom, (razl) = usporedba s prethodnom verzijom, m = manja izmjena.

17. januara 2025.

  • trenrazl 17:5717. januara 2025. u 17:57 Aca razgovor doprinosi 1129 bajtova 0 Nema sažetka izmjene poništi
  • trenrazl 17:5717. januara 2025. u 17:57 Aca razgovor doprinosi 1129 bajtova +1129 Nova stranica: -- 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 function p.err…