Skip to content

Commit

Permalink
Use PHP_INT_MIN instead of 0
Browse files Browse the repository at this point in the history
  • Loading branch information
westonruter committed Apr 23, 2024
1 parent 224a471 commit ee85351
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/speculation-rules/load.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ static function ( string $global_var_name, string $version, Closure $load ) {

// Wait until after the plugins have loaded and the theme has loaded. The after_setup_theme action is used
// because it is the first action that fires once the theme is loaded.
add_action( 'after_setup_theme', $bootstrap, 0 );
add_action( 'after_setup_theme', $bootstrap, PHP_INT_MIN );
}

// Register this copy of the plugin.
Expand Down

0 comments on commit ee85351

Please sign in to comment.