From e24fa9c300299691424ca1e360fb5a36e5539615 Mon Sep 17 00:00:00 2001 From: Jonathan Buttigieg Date: Wed, 29 Mar 2017 22:18:19 +0200 Subject: [PATCH] Hotfix: Fix PHP 5.2 error - unexpected T_STRING in /inc/3rd-party/hosting/godaddy.php on line 117 --- inc/3rd-party/3rd-party.php | 4 ++-- wp-rocket.php | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/inc/3rd-party/3rd-party.php b/inc/3rd-party/3rd-party.php index 5f2b9e09a4..e1ab321e3e 100644 --- a/inc/3rd-party/3rd-party.php +++ b/inc/3rd-party/3rd-party.php @@ -2,13 +2,13 @@ defined( 'ABSPATH' ) or die( 'Cheatin\' uh?' ); require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/wpengine.php' ); -require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/godaddy.php' ); require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/flywheel.php' ); require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/wp-serveur.php' ); require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/varnish.php' ); if ( version_compare( phpversion(), '5.3.0', '>=' ) ) { require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/savvii.php' ); + require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/godaddy.php' ); } require( WP_ROCKET_3RD_PARTY_PATH . 'slider/revslider.php' ); @@ -47,4 +47,4 @@ require( WP_ROCKET_3RD_PARTY_PATH . 'wp-retina-2x.php' ); require( WP_ROCKET_3RD_PARTY_PATH . 'plugins/sf-move-login.php' ); -require( WP_ROCKET_3RD_PARTY_PATH . 'themes/divi.php' ); \ No newline at end of file +require( WP_ROCKET_3RD_PARTY_PATH . 'themes/divi.php' ); diff --git a/wp-rocket.php b/wp-rocket.php index 176f82df53..a9cd201cf8 100755 --- a/wp-rocket.php +++ b/wp-rocket.php @@ -3,7 +3,7 @@ Plugin Name: WP Rocket Plugin URI: https://wp-rocket.me Description: The best WordPress performance plugin. -Version: 2.9.9 +Version: 2.9.10 Code Name: Iridonia Author: WP Media Contributors: Jonathan Buttigieg, Julio Potier, Remy Perona @@ -19,7 +19,7 @@ defined( 'ABSPATH' ) or die( 'Cheatin’ uh?' ); // Rocket defines -define( 'WP_ROCKET_VERSION' , '2.9.9' ); +define( 'WP_ROCKET_VERSION' , '2.9.10' ); define( 'WP_ROCKET_PRIVATE_KEY' , false ); define( 'WP_ROCKET_SLUG' , 'wp_rocket_settings' ); define( 'WP_ROCKET_WEB_MAIN' , false ); @@ -268,7 +268,10 @@ function rocket_activation() require( WP_ROCKET_FUNCTIONS_PATH . 'plugins.php' ); require( WP_ROCKET_FUNCTIONS_PATH . 'i18n.php' ); require( WP_ROCKET_FUNCTIONS_PATH . 'htaccess.php' ); - require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/godaddy.php' ); + + if ( version_compare( phpversion(), '5.3.0', '>=' ) ) { + require( WP_ROCKET_3RD_PARTY_PATH . 'hosting/godaddy.php' ); + } if ( rocket_valid_key() ) { // Add All WP Rocket rules of the .htaccess file