Skip to content

Instantly share code, notes, and snippets.

@LaxusCroco
Created June 6, 2024 09:01
Show Gist options
  • Save LaxusCroco/e892a7268e528e52836f52ca48ee93cd to your computer and use it in GitHub Desktop.
Save LaxusCroco/e892a7268e528e52836f52ca48ee93cd to your computer and use it in GitHub Desktop.
<?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