Created
June 6, 2024 09:01
-
-
Save LaxusCroco/e892a7268e528e52836f52ca48ee93cd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( | |
'jet-form-builder/security/csrf-token/datetime-limit', | |
/** @var \DateTimeImmutable $datetime */ | |
function ( $datetime ) { | |
return $datetime->modify( '-8 hours' ); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment