Changes
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
	do		if not args.action then					self.action = 'edit'			elseif self.supportedActions[args.action] then					self.action = args.action			else					error('Unsupported action ' .. args.action, 2)		end
	do		self.level = effectiveProtectionLevel(self.action, self.title)			if self.level == 'accountcreator' then					-- Lump titleblacklisted pages in with template-protected pages,					-- since templateeditors can do both.					self.level = 'templateeditor'			elseif not self.level or (self.action == 'move' and self.level == 'autoconfirmed') then					-- Users need to be autoconfirmed to move pages anyway, so treat					-- semi-move-protected pages as unprotected.					self.level = '*'		end
		
		
		
		
		
		
		
	
rm unnecessary do/end blocks
	-- Set action
	end
	-- Set level
	end