Main public logs

Jump to navigation Jump to search

This is a combined display of all logs except the patrol, review, tag and thanks logs: :Who performed the action – enter their name without prefix under "Performer". :The page or user affected by an action – enter the page or user name (prefixed with "User:") under "Target".

Logs
  • 01:52, 15 January 2022 Tachyony talk contribs created page Module:Is article (Created page with "local p = {} local disambiguationTemplates = { "[Dd]isambiguation", "[Dd]isambig", "[Dd]isamb", "[Dd]ab", "[Ss]urname" } function p.main(frame) local getArgs = require('Module:Arguments').getArgs local args = getArgs(frame) title = args[1] page = mw.title.new(title, 0) if (not page) then return "badtitle" end if (not page.exists) then return "empty" end if (page.isRedirect) then return "redirect" end local content = page:getContent() if (co...")