From a2f76484d6d3831f7f4b98a1461821da2918c55f Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Tue, 11 Nov 2008 22:12:39 +0000 Subject: [PATCH] Fix double negative message in plugin-install.php, props Speedboxer, fixes 8151 git-svn-id: https://develop.svn.wordpress.org/trunk@9619 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/plugin-install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php index 59745cda7b..efd156b225 100644 --- a/wp-admin/includes/plugin-install.php +++ b/wp-admin/includes/plugin-install.php @@ -486,7 +486,7 @@ function install_plugin_information() { if ( version_compare($GLOBALS['wp_version'], $api->tested, '>') ) echo '

' . __('Warning: This plugin has not been tested with your current version of WordPress.') . '

'; else if ( version_compare($GLOBALS['wp_version'], $api->requires, '<') ) - echo '

' . __('Warning: This plugin has not been marked as being not compatible with your version of WordPress.') . '

'; + echo '

' . __('Warning: This plugin has not been marked as compatible with your version of WordPress.') . '

'; foreach ( (array)$api->sections as $section_name => $content ) { $title = $section_name; $title[0] = strtoupper($title[0]);