Make WordPress Core

Changeset 9619


Ignore:
Timestamp:
11/11/2008 10:12:39 PM (16 years ago)
Author:
azaozz
Message:

Fix double negative message in plugin-install.php, props Speedboxer, fixes 8151

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/plugin-install.php

    r9591 r9619  
    487487            echo '<div class="updated"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
    488488        else if ( version_compare($GLOBALS['wp_version'], $api->requires, '<') )
    489             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>';
     489            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>';
    490490        foreach ( (array)$api->sections as $section_name => $content ) {
    491491            $title = $section_name;
Note: See TracChangeset for help on using the changeset viewer.