Skip to content

Commit

Permalink
Bump minimum PHP version
Browse files Browse the repository at this point in the history
  • Loading branch information
wpscholar committed Jan 22, 2024
1 parent b86bc24 commit 233bb0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@
$pass_nfd_check = $nfd_plugins_check->check_plugin_requirements();

// Check PHP version before initializing to prevent errors if plugin is incompatible.
if ( $pass_nfd_check && version_compare( PHP_VERSION, '5.3', '>=' ) ) {
if ( $pass_nfd_check && version_compare( PHP_VERSION, '7.1', '>=' ) ) {
require __DIR__ . '/bootstrap.php';
}

0 comments on commit 233bb0a

Please sign in to comment.