Skip to content

Commit

Permalink
Merge pull request #902 from bluehost/develop
Browse files Browse the repository at this point in the history
Hotfix for site launched event
  • Loading branch information
wpscholar authored Jan 22, 2024
2 parents b6451df + 233bb0a commit 699a24d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions bluehost-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* Plugin URI: https://bluehost.com
* Update URI: https://github.com/bluehost/bluehost-wordpress-plugin
* Description: WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.
* Version: 3.8.0
* Version: 3.8.1
* Requires at least: 6.0
* Requires PHP: 7.1
* Tested up to: 6.4.2
Expand All @@ -32,7 +32,7 @@
}

// Define constants
define( 'BLUEHOST_PLUGIN_VERSION', '3.8.0' );
define( 'BLUEHOST_PLUGIN_VERSION', '3.8.1' );
define( 'BLUEHOST_PLUGIN_FILE', __FILE__ );
define( 'BLUEHOST_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLUEHOST_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Expand Down 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';
}
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"description": "WordPress plugin that integrates your WordPress site with the Bluehost control panel, including performance, security, and update features.",
"license": "GPL-2.0-or-later",
"version": "3.8.0",
"version": "3.8.1",
"private": true,
"repository": {
"type": "git",
Expand Down

0 comments on commit 699a24d

Please sign in to comment.