Modul:Protection banner: Unterschied zwischen den Versionen
make Protection:needsExpiry even more complicated to allow for trinary logic in cfg.expiryCheckActions
(add a Blurb:_makeIntroFragmentParameter function to get round the problem of how to deal with commas in run-on sentences using the INTROBLURB parameter) |
(make Protection:needsExpiry even more complicated to allow for trinary logic in cfg.expiryCheckActions) |
||
Zeile 301: | Zeile 301: | ||
function Protection:needsExpiry() | function Protection:needsExpiry() | ||
local cfg = self._cfg | local cfg = self._cfg | ||
local actionNeedsCheck = cfg.expirycheckactions[self.action] | |||
return not self.expiry and ( | |||
and self.reason -- the old {{pp-protected}} didn't check for expiry | actionNeedsCheck or ( | ||
actionNeedsCheck == nil | |||
and self.reason -- the old {{pp-protected}} didn't check for expiry | |||
and not cfg.reasonsWithoutExpiryCheck[self.reason] | |||
) | |||
) | |||
end | end | ||