From 19a0a5b64fc1a5fe27846c32c8830884769f6fba Mon Sep 17 00:00:00 2001 From: "Dominik Schilling (ocean90)" Date: Sun, 24 Aug 2014 16:13:54 +0000 Subject: [PATCH] Plugin compatibility is based on your version of WordPress, not your install. fixes #29313. git-svn-id: https://develop.svn.wordpress.org/trunk@29581 602fd350-edb4-49c9-b593-d223f7449a82 --- .../includes/class-wp-plugin-install-list-table.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/includes/class-wp-plugin-install-list-table.php b/src/wp-admin/includes/class-wp-plugin-install-list-table.php index 2e1ee5c1ea..32225bd9a8 100644 --- a/src/wp-admin/includes/class-wp-plugin-install-list-table.php +++ b/src/wp-admin/includes/class-wp-plugin-install-list-table.php @@ -452,11 +452,11 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
' ) ) { - echo __( 'Untested with your install '); + echo __( 'Untested with your version of WordPress' ); } elseif ( ! empty( $plugin['requires'] ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $plugin['requires'] ) ), $plugin['requires'], '<' ) ) { - echo __( 'Incompatible with your install '); + echo __( 'Incompatible with your version of WordPress' ); } else { - echo __( 'Compatible with your install '); + echo __( 'Compatible with your version of WordPress' ); } ?>