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

Module:Protection banner: Difference between revisions

Content deleted Content added
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
Line 301: Line 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
return not self.expiry and (
and cfg.expiryCheckActions[self.action]
actionNeedsCheck or (
and self.reason -- the old {{pp-protected}} didn't check for expiry
actionNeedsCheck == nil
and not cfg.reasonsWithoutExpiryCheck[self.reason]
and self.reason -- the old {{pp-protected}} didn't check for expiry
and not cfg.reasonsWithoutExpiryCheck[self.reason]
)
)
end
end


Cookies help us deliver our services. By using our services, you agree to our use of cookies.