Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:If empty: Difference between revisions

From Gunmetal Olympus Wiki
lastk is not needed
 
m 1 revision imported
 
(No difference)

Latest revision as of 08:21, 24 April 2026

Lua error in Module:Effective_protection_level at line 64: attempt to index field 'TitleBlacklist' (a nil value).

Lua error in Module:Effective_protection_level at line 64: attempt to index field 'TitleBlacklist' (a nil value). This module supports Template:If empty. See here for test cases.



local p = {}

function p.main(frame)
	local args = require('Module:Arguments').getArgs(frame, {wrappers = 'Template:If empty', removeBlanks = false})

	for k,v in ipairs(args) do
		if v ~= '' then
			return v
		end
	end

end

return p