From b087c6c9c7dd9ac9be3015c2bbb22af8a3f5d90e Mon Sep 17 00:00:00 2001 From: Robin Cornett Date: Tue, 21 Nov 2017 08:57:40 -0500 Subject: [PATCH] Change PHP version notice to 5.6 --- includes/class-displayfeaturedimagegenesis.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/class-displayfeaturedimagegenesis.php b/includes/class-displayfeaturedimagegenesis.php index 2d68e44..df66343 100644 --- a/includes/class-displayfeaturedimagegenesis.php +++ b/includes/class-displayfeaturedimagegenesis.php @@ -185,8 +185,9 @@ class Display_Featured_Image_Genesis { $error = sprintf( __( 'Sorry, Display Featured Image for Genesis works only with the Genesis Framework. It has been deactivated.', 'display-featured-image-genesis' ) ); - if ( version_compare( PHP_VERSION, '5.3', '<' ) ) { + if ( version_compare( PHP_VERSION, '5.6', '<' ) ) { $error = $error . sprintf( + /* translators: placeholder is the user's PHP version. */ __( ' But since we\'re talking anyway, did you know that your server is running PHP version %1$s, which is outdated? You should ask your host to update that for you.', 'display-featured-image-genesis' ), PHP_VERSION );