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
This commit is contained in:
parent
aa6d3c91f5
commit
a2f76484d6
@ -486,7 +486,7 @@ function install_plugin_information() {
|
||||
if ( version_compare($GLOBALS['wp_version'], $api->tested, '>') )
|
||||
echo '<div class="updated"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
|
||||
else if ( version_compare($GLOBALS['wp_version'], $api->requires, '<') )
|
||||
echo '<div class="updated"><p>' . __('<strong>Warning:</strong> This plugin has not been marked as being <strong>not compatible</strong> with your version of WordPress.') . '</p></div>';
|
||||
echo '<div class="updated"><p>' . __('<strong>Warning:</strong> This plugin has not been marked as <strong>compatible</strong> with your version of WordPress.') . '</p></div>';
|
||||
foreach ( (array)$api->sections as $section_name => $content ) {
|
||||
$title = $section_name;
|
||||
$title[0] = strtoupper($title[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user