Module:Category handler: Difference between revisions

Content added Content deleted
No edit summary
(Undo revision 17447604 by Defilippoi (talk) not sure what this does)
Line 116: Line 116:
-- See if a category suppression argument has been set.
-- See if a category suppression argument has been set.
self._nocat == true
self._nocat == true
or self._categories == true
or self._categories == false
or (
or (
self._category2
self._category2
Line 132: Line 132:
-- Check whether the category suppression arguments indicate we
-- Check whether the category suppression arguments indicate we
-- should skip the blacklist check.
-- should skip the blacklist check.
return self._nocat == true
return self._nocat == false
or self._categories == true
or self._categories == true
or self._category2 == self._data.category2Yes
or self._category2 == self._data.category2Yes
Line 192: Line 192:
return true
return true
end
end
return true
return false
end
end